mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-11-23 00:23:25 +01:00
34 lines
828 B
Plaintext
34 lines
828 B
Plaintext
map $http_upgrade $connection_upgrade {
|
|
default upgrade;
|
|
'' close;
|
|
}
|
|
map $remote_addr $endpoint_addr {
|
|
"~:" [::1];
|
|
default 127.0.0.1;
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2 default_server;
|
|
listen [::]:443 ssl http2 default_server;
|
|
server_name _;
|
|
|
|
include resty-server-https.conf;
|
|
|
|
location / {
|
|
proxy_http_version 1.1;
|
|
proxy_pass http://$endpoint_addr:48087;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection $connection_upgrade;
|
|
proxy_cache_bypass $http_upgrade;
|
|
|
|
proxy_read_timeout 6h;
|
|
proxy_send_timeout 6h;
|
|
client_body_timeout 6h;
|
|
send_timeout 6h;
|
|
}
|
|
}
|