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