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

34 lines
680 B
Plaintext
Raw Normal View History

2020-12-22 00:41:01 +01:00
location @html5client {
2020-12-23 23:58:24 +01:00
proxy_pass http://html5:4000;
2020-04-09 08:48:47 +02:00
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
2020-12-23 23:58:24 +01:00
location /html5client/1/compatibility {
2020-12-22 00:41:01 +01:00
alias /html5-static/app/compatibility;
}
2020-12-23 23:58:24 +01:00
location /html5client/1/fonts {
2020-12-22 00:41:01 +01:00
alias /html5-static/app/fonts;
}
2020-12-23 23:58:24 +01:00
location /html5client/1/resources {
2020-12-22 00:41:01 +01:00
alias /html5-static/app/resources;
}
2020-12-23 23:58:24 +01:00
location /html5client/1/svgs {
2020-12-22 00:41:01 +01:00
alias /html5-static/app/svgs;
}
2020-12-23 23:58:24 +01:00
location /html5client/1 {
alias /html5-static;
try_files $uri @html5client;
}
location /html5client/ {
2020-12-22 00:41:01 +01:00
alias /html5-static;
try_files $uri @html5client;
}
2020-04-09 08:48:47 +02:00
location /_timesync {
2020-12-23 23:58:24 +01:00
proxy_pass http://html5:4000;
2020-04-09 08:48:47 +02:00
}