bigbluebutton-Github/bbb-graphql-server/graphql.nginx

16 lines
422 B
Plaintext
Raw Normal View History

2023-03-11 23:11:50 +08:00
location /graphql-test {
proxy_pass http://127.0.0.1:3000; # use for development
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
# Websocket connection
location /v1/graphql {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8080;
}