diff --git a/bigbluebutton-web/grails-app/conf/bigbluebutton.properties b/bigbluebutton-web/grails-app/conf/bigbluebutton.properties index f5a8b6dc2b..38e910a9e0 100644 --- a/bigbluebutton-web/grails-app/conf/bigbluebutton.properties +++ b/bigbluebutton-web/grails-app/conf/bigbluebutton.properties @@ -302,7 +302,7 @@ defaultHTML5ClientUrl=${bigbluebutton.web.serverURL}/html5client/join # Graphql websocket url (it's necessary to change for cluster setup) # Using `serverURL` as default, so `https` will be automatically replaced by `wss` -graphqlWebsocketUrl=${bigbluebutton.web.serverURL}/v1/graphql +graphqlWebsocketUrl=${bigbluebutton.web.serverURL}/graphql # This parameter defines the duration (in minutes) to wait before removing user sessions after a meeting has ended. # During this delay, users can still access information indicating that the "Meeting has ended". diff --git a/build/packages-template/bbb-graphql-middleware/graphql.nginx b/build/packages-template/bbb-graphql-middleware/graphql.nginx index ef214024ac..fd135a1687 100644 --- a/build/packages-template/bbb-graphql-middleware/graphql.nginx +++ b/build/packages-template/bbb-graphql-middleware/graphql.nginx @@ -6,7 +6,7 @@ location /graphql-test { } # Websocket connection -location /v1/graphql { +location /graphql { proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade";