Skip to main content

Config

For the WOPI protocol setup, it is necessary to edit the WOPI parameters in the configuration file, which can be found (or created) at the following path:

%ProgramFiles%\ONLYOFFICE\DocumentServer\config\local.json

The default values are available in the default.json configuration file, which is available in the folders above (for Linux and Windows). Please do not edit the contents of the default.json file directly. The default values will be restored each time you restart Docker container or upgrade ONLYOFFICE Docs to a new version and all your changes will be lost.

Restart the services for the config changes to take effect:

systemctl restart ds-*

Parameters

ParameterTypeExampleDescription
wopi.enablebooleanfalseDefines if WOPI is enabled or not.
wopi.hoststring""Defines the WOPI host (host name or IP address).
wopi.htmlTemplatestring"../../web-apps/apps/api/wopi"Defines a path to the WOPI HTML template.
wopi.wopiZonestring"external-http"Defines a zone that the document server uses to navigate the browser to the WOPI application.
wopi.favIconUrlWordstring"/web-apps/apps/
documenteditor/main/
resources/img/favicon.ico"
Defines a path to the favicon for the document editor.
wopi.favIconUrlCellstring"/web-apps/apps/
spreadsheeteditor/main/
resources/img/favicon.ico"
Defines a path to the favicon for the spreadsheet editor.
wopi.favIconUrlSlidestring"/web-apps/apps/
presentationeditor/main/
resources/img/favicon.ico"
Defines a path to the favicon for the presentation editor.
wopi.favIconUrlPdfstring"/web-apps/apps/
pdfeditor/main/
resources/img/favicon.ico"
Defines a path to the favicon for the pdf editor.
wopi.fileInfoBlockListarray of strings["FileUrl"]Defines a list of WOPI file information parameters that are blocked when sending this array to the browser. However, these parameters are available on the server.
wopi.pdfViewarray of strings["djvu", "xps", "oxps"]Defines the file types that can be viewed in the pdf editor.
wopi.pdfEditarray of strings["pdf"]Defines the file types that can be edited in the pdf editor.
wopi.formsarray of strings["pdf"]Defines the form file types.
wopi.wordViewarray of strings["doc", "dotm", "dot", "fodt", "ott", "rtf", "mht", "mhtml",
"html", "htm", "xml", "epub",
"fb2", "sxw", "stw", "wps",
"wpt", "pages", "docxf", "oform"]
Defines the file types that can be viewed in the document editor.
wopi.wordEditarray of strings["docx", "dotx", "docm", "odt",
"txt"]
Defines the file types that can be edited in the document editor.
wopi.cellViewarray of strings["xls", "xlsb", "xltm", "xlt",
"fods", "ots", "sxc", "xml",
"et", "ett", "numbers"]
Defines the file types that can be viewed in the spreadsheet editor.
wopi.cellEditarray of strings["xlsx", "xltx", "xlsm", "ods",
"csv"]
Defines the file types that can be edited in the spreadsheet
editor.
wopi.slideViewarray of strings["ppt", "ppsx", "ppsm", "pps",
"potm", "pot", "fodp", "otp",
"sxi", "dps", "dpt", "key"]
Defines the file types that can be edited in the presentation editor.
wopi.slideEditarray of strings["pptx", "potx", "pptm", "odp"]Defines the file types that can be viewed in the spreadsheet editor.
wopi.publicKeystring""Defines the public key that the integrator uses to check the private key.

Please note that starting from version 8.3, the values of this parameter in the default.json and local.json files are different.
wopi.modulusstring""Defines the RSA modulus in the Base64-encoded format that is used to retrieve the public key.

Please note that starting from version 8.3, the values of this parameter in the default.json and local.json files are different.
wopi.exponentstring"65537"Defines the RSA exponent in the Base64-encoded format that is used to retrieve the public key.
wopi.privateKeystring""Defines the private key that signs the document server request.

Please note that starting from version 8.3, the values of this parameter in the default.json and local.json files are different.
wopi.publicKeyOldstring""Defines the old public key that the integrator used to check the private key.

Please note that starting from version 8.3, the values of this parameter in the default.json and local.json files are different.
wopi.modulusOldstring""Defines the old RSA modulus in the Base64-encoded format that was used to retrieve the public key.

Please note that starting from version 8.3, the values of this parameter in the default.json and local.json files are different.
wopi.exponentOldstring"65537"Defines the old RSA exponent in the Base64-encoded format that was used to retrieve the public key.
wopi.privateKeyOldstring""Defines the old private key that signed the document server request.

Please note that starting from version 8.3, the values of this parameter in the default.json and local.json files are different.
wopi.refreshLockIntervalstring"10m"Defines the interval time in minutes for refreshing the lock on a file by resetting its automatic expiration timer to 30 minutes.
wopi.dummyobjectDefines the properties of dummy handlers for stress testing.
wopi.dummy.enablebooleanfalseDefines if the dummy handlers are enabled or not.
wopi.dummy.
sampleFilePath
string""Defines the dummy path to the sample file.

Example

{
"wopi": {
"enable": false,
"host": "",
"htmlTemplate": "../../web-apps/apps/api/wopi",
"wopiZone": "external-http",
"favIconUrlWord": "/web-apps/apps/documenteditor/main/resources/img/favicon.ico",
"favIconUrlCell": "/web-apps/apps/spreadsheeteditor/main/resources/img/favicon.ico",
"favIconUrlSlide": "/web-apps/apps/presentationeditor/main/resources/img/favicon.ico",
"favIconUrlPdf": "/web-apps/apps/pdfeditor/main/resources/img/favicon.ico",
"fileInfoBlockList": ["FileUrl"],
"pdfView": ["djvu", "xps", "oxps"],
"pdfEdit": ["pdf"],
"forms": ["pdf"],
"wordView": ["doc", "dotm", "dot", "fodt", "ott", "rtf", "mht", "mhtml", "html", "htm", "xml", "epub", "fb2", "sxw", "stw", "wps", "wpt", "pages", "docxf", "oform"],
"wordEdit": ["docx", "dotx", "docm", "odt", "txt"],
"cellView": ["xls", "xlsb", "xltm", "xlt", "fods", "ots", "sxc", "xml", "et", "ett", "numbers"],
"cellEdit": ["xlsx", "xltx", "xlsm", "ods", "csv"],
"slideView": ["ppt", "ppsx", "ppsm", "pps", "potm", "pot", "fodp", "otp", "sxi", "dps", "dpt", "key"],
"slideEdit": ["pptx", "potx", "pptm", "odp"],
"publicKey": "",
"modulus": "",
"exponent": 65537,
"privateKey": "",
"publicKeyOld": "",
"modulusOld": "",
"exponentOld": 65537,
"privateKeyOld": "",
"refreshLockInterval": "10m",
"dummy": {
"enable": false,
"sampleFilePath": ""
}
}
}