dit-digital-service-manual/nginx.conf
2022-02-07 11:52:10 +00:00

16 lines
274 B
Nginx Configuration File

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";
}
}