server { {% include './templates/header.conf.j2' %} client_max_body_size 10M; location / { proxy_pass http://localhost:5280; include proxy_params; } location /upload { proxy_pass http://127.0.0.1:5280; proxy_buffering off; proxy_set_header Host $host; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } }