OnlyOffice-Mattermost plugin setup

Do you want to: 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: 8.0.0.1
Connector version:
DMS (platform) version:
OS: Ubuntu
Browser version: Chrome
Attach logs if possible.


I set up an OnlyOffice Workspace, using the 1-Click install on DigitalOcean.

Now, i’m trying to configure up the OnlyOffice plugin in my Mattermost instance, using this : GitHub - ONLYOFFICE/onlyoffice-mattermost: The app which enables the users to edit office documents from Mattermost using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to Mattermost

For the plugin settings, i need the Secret key. But, i’m unable to find the config file in my OnlyOffice installation.

Could someone point me towards the appropriate documentation for that?

:point_up_2:

@anyone?

@shrey Sure, you can check out the information using the links below:

You can see how it looks in the local.json file.

linux

/etc/onlyoffice/documentserver/local.json

docker

/etc/onlyoffice/documentserver/local.json In container

Sample local.json configuration:

{
    "services": {
        "CoAuthoring": {
            "secret": {
                "inbox": {
                    "string": "secret"
                },
                "outbox": {
                    "string": "secret"
                },
            },
            "token": {
                "enable": {
                    "browser": true,
                    "request": {
                        "inbox": true,
                        "outbox": true
                    }
                }
            }
        }
    }
}