docker/mod/nginx/bbb/bbb-html5.nginx

11 lines
224 B
Plaintext
Raw Normal View History

2020-04-09 08:48:47 +02:00
location /html5client {
2020-04-09 22:33:27 +02:00
proxy_pass http://html5:3000;
2020-04-09 08:48:47 +02:00
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
location /_timesync {
2020-04-09 22:33:27 +02:00
proxy_pass http://html5:3000;
2020-04-09 08:48:47 +02:00
}