I am building an integration and testing with an instance of the DocumentServer which is installed within a Docker container.
# apt info onlyoffice-documentserver
Package: onlyoffice-documentserver
Version: 8.3.3-18
The docker container has port 80 forwarded to 9080 on my host, and 443 forwarded to 9443. I am using minica to manage a local root ca which I’ve added to my browser as well as system certs in the container, and I also have rejectUnauthorized
set to false (for local testing purposes only, this is not a production configuration). I’ve gotten past a few issues and so far I have:
- ensured a websocket connection is established on the client
- ensured my read URL is
wget
-able from the DocumentServer container - ensured all my hosts in
/etc/hosts
are correct on each “side” between the host and container
In the UI I see the document editor open and a box read “loading” for some time until I get an error saying “conversion timeout exceeded”. Where does this error come from? What should I start looking for next?