feat: add ci cd files do not edit those files

This commit is contained in:
mahyargdz
2024-10-20 15:31:16 +03:30
parent e2c28321be
commit 5df806caa3
5 changed files with 92 additions and 94 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;
}
}