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