2019-02-09 00:53:57 +08:00
|
|
|
# Handle request to bbb-web running within a SpringBoot Tomcat embedded servlet container. This is for BBB-API and Presentation.
|
2017-09-19 02:25:00 +08:00
|
|
|
location /bigbluebutton {
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
|
|
|
location /bigbluebutton {
|
2019-02-10 00:36:27 +08:00
|
|
|
proxy_pass http://127.0.0.1:8090;
|
2017-09-19 02:25:00 +08:00
|
|
|
proxy_redirect default;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
|
|
|
|
# Workaround IE refusal to set cookies in iframe
|
|
|
|
add_header P3P 'CP="No P3P policy available"';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
location ~ "^\/bigbluebutton\/presentation\/(?<prestoken>[a-zA-Z0-9_-]+)/upload$" {
|
2019-02-10 00:36:27 +08:00
|
|
|
proxy_pass http://127.0.0.1:8090;
|
2017-09-19 02:25:00 +08:00
|
|
|
proxy_redirect default;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
|
|
|
|
# Workaround IE refusal to set cookies in iframe
|
|
|
|
add_header P3P 'CP="No P3P policy available"';
|
|
|
|
|
|
|
|
# Allow 30M uploaded presentation document.
|
|
|
|
client_max_body_size 30m;
|
|
|
|
client_body_buffer_size 128k;
|
|
|
|
|
|
|
|
proxy_connect_timeout 90;
|
|
|
|
proxy_send_timeout 90;
|
|
|
|
proxy_read_timeout 90;
|
|
|
|
|
|
|
|
proxy_buffer_size 4k;
|
|
|
|
proxy_buffers 4 32k;
|
|
|
|
proxy_busy_buffers_size 64k;
|
|
|
|
proxy_temp_file_write_size 64k;
|
|
|
|
|
|
|
|
include fastcgi_params;
|
|
|
|
|
|
|
|
proxy_request_buffering off;
|
|
|
|
|
|
|
|
# Send a sub-request to allow bbb-web to refuse before loading
|
|
|
|
auth_request /bigbluebutton/presentation/checkPresentation;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
location = /bigbluebutton/presentation/checkPresentation {
|
2019-02-10 00:36:27 +08:00
|
|
|
proxy_pass http://127.0.0.1:8090;
|
2017-09-19 02:25:00 +08:00
|
|
|
proxy_redirect default;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
|
|
|
|
proxy_set_header X-Presentation-Token $prestoken;
|
|
|
|
proxy_set_header X-Original-URI $request_uri;
|
|
|
|
proxy_set_header Content-Length "";
|
|
|
|
proxy_set_header X-Original-Content-Length $http_content_length;
|
|
|
|
|
|
|
|
# Allow 30M uploaded presentation document.
|
|
|
|
client_max_body_size 30m;
|
|
|
|
client_body_buffer_size 128k;
|
|
|
|
|
|
|
|
proxy_pass_request_body off;
|
|
|
|
proxy_request_buffering off;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-01-08 00:54:37 +08:00
|
|
|
# To check connection authentication, include:
|
|
|
|
# auth_request /bigbluebutton/connection/checkAuthorization;
|
|
|
|
# auth_request_set $auth_status $upstream_status;
|
|
|
|
#
|
|
|
|
# and make sure to add sessionToken param in the request URI
|
|
|
|
location = /bigbluebutton/connection/checkAuthorization {
|
|
|
|
internal;
|
2019-02-10 00:36:27 +08:00
|
|
|
proxy_pass http://127.0.0.1:8090;
|
2019-01-08 00:54:37 +08:00
|
|
|
proxy_pass_request_body off;
|
|
|
|
proxy_set_header Content-Length "";
|
|
|
|
proxy_set_header X-Original-URI $request_uri;
|
|
|
|
}
|
|
|
|
}
|