Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/vm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorAlexey Golubev <alexey.golubev@onlyoffice.com>2017-09-15 10:03:15 +0300
committerDaniel Hansson <daniel@techandme.se>2017-09-15 10:03:15 +0300
commit94d4462f878e95b0abda708c456323f07229afdc (patch)
tree0d0efad7666b91746e7f29c5886b039481bb5e75 /apps
parentbca43daaa062b8d69941ecfb53724bf9a865180d (diff)
Fixed websocket connection error (#363)
Diffstat (limited to 'apps')
-rw-r--r--apps/onlyoffice.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/onlyoffice.sh b/apps/onlyoffice.sh
index a85eb0d5..cc1c86ab 100644
--- a/apps/onlyoffice.sh
+++ b/apps/onlyoffice.sh
@@ -181,7 +181,7 @@ fi
# Install Onlyoffice docker
docker pull onlyoffice/documentserver:latest
-docker run -i -t -d -p 127.0.0.3:9090:80 -p 127.0.0.3:9091:443 --restart always onlyoffice/documentserver
+docker run -i -t -d -p 127.0.0.3:9090:80 --restart always onlyoffice/documentserver
# Install apache2
install_if_not apache2
@@ -227,7 +227,7 @@ then
# basic proxy settings
ProxyRequests off
- ProxyPassMatch (.*)(\/websocket)$ "ws://127.0.0.3:9091/$1$2"
+ ProxyPassMatch (.*)(\/websocket)$ "ws://127.0.0.3:9090/$1$2"
ProxyPass / "http://127.0.0.3:9090/"
ProxyPassReverse / "http://127.0.0.3:9090/"