server { listen ${CLIENTS_INTERNAL_PORT}; server_name _; root /usr/share/nginx/html; index index.html; location /api/ { proxy_pass http://server:${SERVER_INTERNAL_PORT}/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 /uploads/ { proxy_pass http://server:${SERVER_INTERNAL_PORT}/uploads/; proxy_http_version 1.1; proxy_set_header Host $host; } location = /docs { proxy_pass http://server:${SERVER_INTERNAL_PORT}/docs; 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 = /redoc { proxy_pass http://server:${SERVER_INTERNAL_PORT}/redoc; 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 = /openapi.json { proxy_pass http://server:${SERVER_INTERNAL_PORT}/openapi.json; 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 / { try_files $uri $uri/ /index.html; } }