After deploying the document server v9.3.1.8 using Docker, the docker log indicates: (node:10392) Warning: Setting the NODE_TLS_REJECT_UNAUTHORIZED environment variable to ‘0’ makes TLS connections and HTTPS requests insecure by disabling certificate verification.
(Use example --trace-warnings ... to show where the warning was created)
How can I resolve this warning?
The docker image is onlyoffice/documentserver:latest
Additionally, how to start and access the admin panel
Hey @wc19888, ![]()
This is just a warning (not an error) — it doesn’t break anything and the server works fine. You can safely ignore it for most deployments.
Try turning off validating certificate by Document Server. Set services.CoAuthoring.requestDefaults.rejectUnauthorized=false
in /etc/onlyoffice/documentserver/defaults.json file and restart documentserver serviceis with supervisorctl restart all .
rejectUnauthorized - Defines if the certificates will be verified by the Document Server or not.
Recent related thread with Admin Panel:
https://community.onlyoffice.com/t/cannot-access-admin-panel-of-the-documentserver/18609 ![]()