server { listen 8080; server_name _; root /usr/share/nginx/html; location / { try_files $uri $uri/ /index.html; add_header Cache-Control "no-cache"; } location = /healthz { access_log off; return 200 "ok\n"; } }