Skip to content

Commit

Permalink
fix: use correct upstreams
Browse files Browse the repository at this point in the history
  • Loading branch information
Naramsim committed Mar 3, 2025
1 parent d2e60e0 commit ff388f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Resources/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ http {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
set $upstream_graphql graphql;
set $upstream_graphql graphql-engine;
proxy_pass http://$upstream_graphql:8080/;
}

Expand All @@ -102,7 +102,7 @@ http {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
set $upstream_graphiql graphql-engine;
set $upstream_graphiql graphiql;
proxy_pass http://$upstream_graphiql:80/;
}

Expand All @@ -123,7 +123,7 @@ http {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
set $upstream_graphql graphql;
set $upstream_graphql graphql-engine;
proxy_pass http://$upstream_graphql:8080/v1/graphql;
}

Expand Down

0 comments on commit ff388f5

Please sign in to comment.