mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-04-30 13:44:30 +02:00
remove outdated core
reference
This commit is contained in:
parent
aedfd20b8e
commit
a6eb8cc1cd
@ -130,7 +130,7 @@ services:
|
|||||||
network_mode: host
|
network_mode: host
|
||||||
extra_hosts:
|
extra_hosts:
|
||||||
- "host.docker.internal:10.7.7.1"
|
- "host.docker.internal:10.7.7.1"
|
||||||
- "core:10.7.7.2"
|
- "bbb-web:10.7.7.2"
|
||||||
- "etherpad:10.7.7.4"
|
- "etherpad:10.7.7.4"
|
||||||
- "webrtc-sfu:10.7.7.10"
|
- "webrtc-sfu:10.7.7.10"
|
||||||
- "html5:10.7.7.11"
|
- "html5:10.7.7.11"
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
proxy_http_version 1.1;
|
proxy_http_version 1.1;
|
||||||
|
|
||||||
location /bigbluebutton {
|
location /bigbluebutton {
|
||||||
proxy_pass http://core:8090;
|
proxy_pass http://bbb-web:8090;
|
||||||
proxy_redirect default;
|
proxy_redirect default;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
|
||||||
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
|
|
||||||
location ~ "^\/bigbluebutton\/presentation\/(?<prestoken>[a-zA-Z0-9_-]+)/upload$" {
|
location ~ "^\/bigbluebutton\/presentation\/(?<prestoken>[a-zA-Z0-9_-]+)/upload$" {
|
||||||
proxy_pass http://core:8090;
|
proxy_pass http://bbb-web:8090;
|
||||||
proxy_redirect default;
|
proxy_redirect default;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
|
||||||
@ -53,14 +53,14 @@
|
|||||||
if ($arg_presFilename !~ "^[0-9a-f]+-[0-9]+\.[0-9a-zA-Z]+$") {
|
if ($arg_presFilename !~ "^[0-9a-f]+-[0-9]+\.[0-9a-zA-Z]+$") {
|
||||||
return 404;
|
return 404;
|
||||||
}
|
}
|
||||||
proxy_pass http://core:8090$uri$is_args$args;
|
proxy_pass http://bbb-web:8090$uri$is_args$args;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
# Workaround IE refusal to set cookies in iframe
|
# Workaround IE refusal to set cookies in iframe
|
||||||
add_header P3P 'CP="No P3P policy available"';
|
add_header P3P 'CP="No P3P policy available"';
|
||||||
}
|
}
|
||||||
|
|
||||||
location = /bigbluebutton/presentation/checkPresentation {
|
location = /bigbluebutton/presentation/checkPresentation {
|
||||||
proxy_pass http://core:8090;
|
proxy_pass http://bbb-web:8090;
|
||||||
proxy_redirect default;
|
proxy_redirect default;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
|
||||||
@ -85,7 +85,7 @@
|
|||||||
# and make sure to add sessionToken param in the request URI
|
# and make sure to add sessionToken param in the request URI
|
||||||
location = /bigbluebutton/connection/checkAuthorization {
|
location = /bigbluebutton/connection/checkAuthorization {
|
||||||
internal;
|
internal;
|
||||||
proxy_pass http://core:8090;
|
proxy_pass http://bbb-web:8090;
|
||||||
proxy_pass_request_body off;
|
proxy_pass_request_body off;
|
||||||
proxy_set_header Content-Length "";
|
proxy_set_header Content-Length "";
|
||||||
proxy_set_header X-Original-URI $request_uri;
|
proxy_set_header X-Original-URI $request_uri;
|
||||||
@ -93,7 +93,7 @@
|
|||||||
|
|
||||||
location = /bigbluebutton/connection/validatePad {
|
location = /bigbluebutton/connection/validatePad {
|
||||||
internal;
|
internal;
|
||||||
proxy_pass http://core:8090;
|
proxy_pass http://bbb-web:8090;
|
||||||
proxy_pass_request_body off;
|
proxy_pass_request_body off;
|
||||||
proxy_set_header Content-Length "";
|
proxy_set_header Content-Length "";
|
||||||
proxy_set_header X-Original-URI $request_uri;
|
proxy_set_header X-Original-URI $request_uri;
|
||||||
@ -130,7 +130,7 @@
|
|||||||
|
|
||||||
location = /bigbluebutton/textTrack/validateAuthToken {
|
location = /bigbluebutton/textTrack/validateAuthToken {
|
||||||
internal;
|
internal;
|
||||||
proxy_pass http://core:8090;
|
proxy_pass http://bbb-web:8090;
|
||||||
proxy_redirect default;
|
proxy_redirect default;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user