applied v2.2.31 changes

This commit is contained in:
chandi
2020-12-22 00:41:01 +01:00
parent 75106bfb8d
commit 8a7edf7693
9 changed files with 64 additions and 11 deletions

View File

@ -1,10 +1,28 @@
location /html5client {
location @html5client {
proxy_pass http://html5:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
location /html5client/compatibility {
alias /html5-static/app/compatibility;
}
location /html5client/fonts {
alias /html5-static/app/fonts;
}
location /html5client/resources {
alias /html5-static/app/resources;
}
location /html5client/svgs {
alias /html5-static/app/svgs;
}
location /html5client {
alias /html5-static;
try_files $uri @html5client;
}
location /_timesync {
proxy_pass http://html5:3000;
}