We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97af0ce commit 9d1f6d3Copy full SHA for 9d1f6d3
1 file changed
nginx.conf
@@ -28,19 +28,6 @@ server {
28
proxy_cache_bypass $http_upgrade;
29
}
30
31
- # Proxy GraphQL requests to backend
32
- location /graphql {
33
- proxy_pass http://${SYNC_HOST}:8787;
34
- proxy_http_version 1.1;
35
- proxy_set_header Upgrade $http_upgrade;
36
- proxy_set_header Connection 'upgrade';
37
- proxy_set_header Host $host;
38
- proxy_set_header X-Real-IP $remote_addr;
39
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
40
- proxy_set_header X-Forwarded-Proto $scheme;
41
- proxy_cache_bypass $http_upgrade;
42
- }
43
-
44
# Serve static files
45
location / {
46
try_files $uri $uri/ /index.html;
0 commit comments