Arborescence des pages

Vous regardez une version antérieure (v. /wiki/display/GTCOLLAB/Configurations+Onlyoffice) de cette page.

afficher les différences afficher l'historique de la page

Vous regardez la version actuelle de cette page. (v. 1) afficher la version suivante »

Voici la liste des fichiers de configuration des plateformes onlyoffice dans les établissements, vous pouvez ajouter le votre à la suite.

Université de Lorraine

local.json
{
    "services": {
        "CoAuthoring": {
            "sql": {
                "type": "xxx",
                "dbHost": "xxx",
                "dbPort": "xxx",
                "dbName": "xxx",
                "dbUser": "xxx",
                "dbPass": "xxx"
            },
            "redis": {
                "host": "localhost"
            },
            "token": {
                "enable": {
                    "request": {
                        "inbox": true,
                        "outbox": true
                    },
                    "browser": true
                },
                "inbox": {
                    "header": "Authorization"
                },
                "outbox": {
                    "header": "Authorization"
                }
            },
            "secret": {
                "inbox": {
                    "string": "password"
                },
                "outbox": {
                    "string": "password"
                },
                "session": {
                    "string": "password"
                }
            },
            "autoAssembly": {
                             "enable": true,
                             "interval": "180m"
                        },
            "expire": {
                                "sessionidle":"120m",
                "sessionabsolute":"12h"
                        }
        }
    },
    "rabbitmq": {
        "url": "amqp://guest:guest@localhost"
    },
    "license": {
        "license_file": "/var/www/onlyoffice/Data/license.lic"
    },
    "FileConverter": {
        "converter": {
            "downloadTimeout": 240
        }
    }
}
docker-compose.yml
version: '2'
#Définition des services
services:
    onlyoffice-document-server:
       container_name: onlyoffice-ds
       image: onlyoffice/documentserver-ee:6.2
       restart: always
       volumes:
         - /applications/onlyoffice/data/logs:/var/log/onlyoffice/documentserver
         - /applications/onlyoffice/data/lib:/var/lib/onlyoffice
         - /applications/onlyoffice/data/data:/var/www/onlyoffice/Data
         - /applications/onlyoffice/data/db:/var/lib/postgresql
         - /applications/onlyoffice/data/local.json:/etc/onlyoffice/documentserver/local.json
         - /applications/onlyoffice/data/themes:/var/www/onlyoffice/documentserver/sdkjs/slide/themes/src
  • Aucune étiquette