server { listen 80; server_name localhost; location / { uwsgi_pass gunicorn:8000; include uwsgi_params; } location /health { return 200 "OK"; add_header Content-Type text/plain; } }