Web: Removed useless for static build

This commit is contained in:
Alexey Safronov 2022-09-02 11:31:35 +03:00
parent 8ce30932a3
commit b811d2bb14
3 changed files with 8 additions and 11 deletions

View File

@ -36,7 +36,6 @@ powershell -Command "(gc build\deploy\nginx\onlyoffice.conf) -replace '#', '' |
xcopy config\nginx\sites-enabled\* build\deploy\nginx\sites-enabled\ /E /R /Y
REM fix paths
powershell -Command "(gc build\deploy\nginx\sites-enabled\onlyoffice-login.conf) -replace 'ROOTPATH', '%~dp0deploy\login' -replace '\\', '/' | Out-File -encoding ASCII build\deploy\nginx\sites-enabled\onlyoffice-login.conf"
powershell -Command "(gc build\deploy\nginx\sites-enabled\onlyoffice-client.conf) -replace 'ROOTPATH', '%~dp0deploy\client' -replace '\\', '/' | Out-File -encoding ASCII build\deploy\nginx\sites-enabled\onlyoffice-client.conf"
REM restart nginx

View File

@ -143,10 +143,17 @@ server {
}
location /login {
#rewrite login/(.*) /$1 break;
proxy_pass http://localhost:5011;
proxy_redirect off;
proxy_set_header Host $this_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-REWRITER-URL $X_REWRITER_URL;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
location /sockjs-node {

View File

@ -1,9 +0,0 @@
server {
listen 5011;
root "ROOTPATH";
index index.html;
location / {
try_files $uri /index.html =404;
}
}