I thought that I had to install a plugin to a folder in the documentserver called "sdkjs-plugins" .. that folder didn't exist, I had to create it. after doing that and restarting, I see no signs of the plugin having loaded or failed.
Since I'm having trouble with our server install, I decided to do a clean install on my mac. I went the docker way.
This seems like everything is okay:
Code: Select all
Roberts-MBP:~ robertotomas$ sudo docker run -i -t -d -p 8008:80 --restart=always -v /Volumes/app/onlyoffice/DocumentServer/logs:/var/log/onlyoffice -v /Volumes/app/onlyoffice/DocumentServer/data:/var/www/onlyoffice/Data -v /Volumes/app/onlyoffice/DocumentServer/lib:/var/lib/onlyoffice -v /Volumes/app/onlyoffice/DocumentServer/db:/var/lib/postgresql onlyoffice/documentserver
af13924e9ab7e84b9c3583714a2e645a3ae6b3532bd09b751948ba26f5dc4f35
Roberts-MBP:~ robertotomas$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
af13924e9ab7 onlyoffice/documentserver "/bin/sh -c 'bash ..." 4 seconds ago Up 3 seconds 443/tcp, 0.0.0.0:8008->80/tcp angry_noether
The 8000's are open, for example, the test web server I set up to eventually run document Editor in is running on 8080 and is reachable. Further, if I run `docker run -d -p 80:80 --name webserver nginx` I get an nginx response on localhost:80This page isn’t working
localhost didn’t send any data.
ERR_EMPTY_RESPONSE
What am I missing?
Also, can someone help me understand the next step? How what is the proper way to install and load the onlyoffice document editor in my node webserver?