Add CI/CD
This commit is contained in:
15
nginx.conf
Normal file
15
nginx.conf
Normal file
@@ -0,0 +1,15 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name _;
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
|
||||
location /health {
|
||||
access_log off;
|
||||
default_type text/plain;
|
||||
return 200 "Healthy\n";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user