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

24 lines
619 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;
2023-03-11 23:11:50 +08:00
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; #Hasura
2023-03-11 23:11:50 +08:00
}
2023-12-13 21:39:34 +08:00
location /api/rest {
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; #Hasura
}