server { listen 80; server_name localhost; access_log /dev/stdout combined; error_log /dev/stdout info; location / { root /usr/share/nginx/html; index index.html index.htm; } location /health { add_header Content-Type text/plain; access_log off; return 200 'Ok'; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } }