update:add ci cd files ==> do not edit those file

This commit is contained in:
mahyargdz
2024-10-10 16:16:34 +03:30
parent 5345bd6916
commit 7f435f4f41
4 changed files with 100 additions and 10 deletions
+19
View File
@@ -0,0 +1,19 @@
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html =404;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location /health {
return 200;
}
}