server { listen 80; server_name nomadweb.nomadro.com; client_max_body_size 20M; location /api/ { proxy_pass http://127.0.0.1:8055/api/; proxy_http_version 1.1; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } location /docs { proxy_pass http://127.0.0.1:8055/docs; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } location /openapi.json { proxy_pass http://127.0.0.1:8055/openapi.json; proxy_set_header Host $host; } location / { proxy_pass http://127.0.0.1:3055; proxy_http_version 1.1; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } }