Starting from version 6.4, ONLYOFFICE Docs offers support for the Web Application Open Platform Interface Protocol (WOPI) - a REST-based protocol that is used to integrate your application with an online office. WOPI operations allow you to open files stored on a server, edit and save them.
This documentation describes:
For further information on the WOPI protocol, please read the WOPI documentation.
All the necessary WOPI settings you can find and change in the configuration file which can be found (or created) at the following path:
To enable WOPI, set the wopi.enable parameter in the Document Server config to true:
Name | Description | Type | Example |
wopi.enable | Defines if WOPI is enabled or not. The default value is false. | boolean | true |
{ "wopi": { "enable": true } }
ONLYOFFICE Docs can accept WOPI requests only from the trusted integrator. The IP address of such an integrator must be included in the WOPI domain allow list. At the same time, access for all the other integrators must be denied.
Follow the steps below to configure the Document Server IP filter:
Open the /etc/onlyoffice/documentserver/local.json file using any available text editor:
"ipfilter": { "rules": [ { "address": "ip_address", "allowed": true }, { "address": "*", "allowed": false } ], "useforrequest": false, "errorcode": 403 }
Change the following default settings. Enter your "ip_address" that can contain:
Restart the services for the config changes to take effect:
For RPM/DEB packages:
systemctl restart ds-*
For Docker:
supervisorctl restart all