server { listen 80; location / { root /usr/share/nginx/html; index index.html index.htm; } location /health { access_log off; return 200 'healthy'; add_header Content-Type text/plain; } }