Do you want to: Suggest a feature / Report a bug / Ask a how-to question
For feature suggestions, describe the result you would like to achieve in detail:
For bug reports, provide the steps to reproduce and if possible a minimal demo of the problem:
Document Server version:
Type of installation of the Document Server (docker, deb/rpm, exe, please point us to the installation guide that you used as well):
Connector version:
DMS (platform) version:
OS: Ubuntu 24.04
Browser version:
Additional information:
Any relevant details about the situation. If you’ve modified configuration files or are using a proxy server that might affect the situation, please mention it. You can also attach images and videofile to the post (or to place them to external storage).
Nextcloud 32 and Only office 9.2.1.8<
My nextcloud has a ssl cert and is external. My onlyoffice docs has a local cert for ssl and is on a 192.168.1.0/24 network.
To get only office connector working with my docker onlyoffice docs with a ip range 192.168.1.0/24 I had to add the additional file to my docker run config:
/app/onlyoffice/DocumentServer/config$ cat local-production-linux.json
{
"services": {
"CoAuthoring": {
"secret": {
"browser": {
"string": "secret"
},
"editor": {
"string": "secret"
},
"request": {
"string": "secret"
}
},
"request-filtering-agent": {
"allowPrivateIPAddress": true,
"allowMetaIPAddress": true
}
}
}
}
Is there a better way to do this?