mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-24 04:58:31 -05:00
74 lines
3.3 KiB
Bash
74 lines
3.3 KiB
Bash
# If you're on a internet facing server please comment out following line.
|
|
# It skips certificate validation for various parts of oCIS and is needed if you use self signed certificates.
|
|
INSECURE=true
|
|
|
|
### Traefik settings ###
|
|
# Serve Traefik dashboard. Defaults to "false".
|
|
TRAEFIK_DASHBOARD=
|
|
# Domain of Traefik, where you can find the dashboard. Defaults to "traefik.owncloud.test"
|
|
TRAEFIK_DOMAIN=
|
|
# Basic authentication for the dashboard. Defaults to user "admin" and password "admin" (written as: "admin:admin").
|
|
TRAEFIK_BASIC_AUTH_USERS=
|
|
# Email address for obtaining LetsEncrypt certificates, needs only be changed if this is a public facing server
|
|
TRAEFIK_ACME_MAIL=
|
|
# Defaults to "https://acme-v02.api.letsencrypt.org/directory".
|
|
# Set to: "https://acme-staging-v02.api.letsencrypt.org/directory" for testing to check the certificate process.
|
|
# With staging, there will be an SSL error in the browser. When certificates are displayed and are emitted by
|
|
# "Fake LE Intermediate X1", the process went well and the envvar can be reset to empty to get valid certificates.
|
|
TRAEFIK_ACME_CASERVER=
|
|
|
|
### oCIS settings ###
|
|
# oCIS version. Defaults to "latest"
|
|
OCIS_DOCKER_TAG=
|
|
# Domain of oCIS, where you can find the frontend. Defaults to "ocis.owncloud.test"
|
|
OCIS_DOMAIN=
|
|
# oCIS admin user password. Defaults to "admin".
|
|
ADMIN_PASSWORD=
|
|
# The demo users should not be created on a production instance
|
|
# because their passwords are public. Defaults to "false".
|
|
DEMO_USERS=
|
|
# Log level for OCIS_DOCKER_TAG
|
|
OCIS_LOG_LEVEL=
|
|
|
|
### Wopi server settings ###
|
|
# cs3org wopi server version. Defaults to "v10.4.0"
|
|
WOPISERVER_DOCKER_TAG=
|
|
# cs3org wopi server domain. Defaults to "wopiserver.owncloud.test"
|
|
WOPISERVER_DOMAIN=
|
|
# JWT secret which is used for the documents to be request by the Wopi client from the cs3org Wopi server. Must be change in order to have a secure Wopi server. Defaults to "LoremIpsum567"
|
|
WOPI_JWT_SECRET=
|
|
|
|
### Collabora settings ###
|
|
# Domain of Collabora, where you can find the frontend. Defaults to "collabora.owncloud.test"
|
|
COLLABORA_DOMAIN=
|
|
# Admin user for Collabora. Defaults to blank, provide one to enable access. Collabora Admin Panel URL: https://{COLLABORA_DOMAIN}/browser/dist/admin/admin.html
|
|
COLLABORA_ADMIN_USER=
|
|
# Admin password for Collabora. Defaults to blank, provide one to enable access
|
|
COLLABORA_ADMIN_PASSWORD=
|
|
|
|
### OnlyOffice settings ###
|
|
# Domain of OnlyOffice, where you can find the frontend. Defaults to "onlyoffice.owncloud.test"
|
|
ONLYOFFICE_DOMAIN=
|
|
|
|
### Email / Inbucket settings ###
|
|
# Inbucket / Mail domain. Defaults to "mail.owncloud.test"
|
|
INBUCKET_DOMAIN=
|
|
|
|
### Apache Tika Content analysis toolkit ###
|
|
# Set the desired docker image tag or digest, defaults to "latest"
|
|
TIKA_IMAGE=
|
|
|
|
# If you want to use debugging and tracing with this stack,
|
|
# you need uncomment following line. Please see documentation at
|
|
# https://owncloud.dev/ocis/deployment/monitoring-tracing/
|
|
#COMPOSE_FILE=docker-compose.yml:monitoring_tracing/docker-compose-additions.yml
|
|
|
|
### Uppy Companion settings ###
|
|
# Domain of Uppy Companion. Defaults to "companion.owncloud.test"
|
|
COMPANION_IMAGE=
|
|
COMPANION_DOMAIN=
|
|
COMPANION_WEB_CONFIG_FILE_NAME=
|
|
# Provider settings, see https://uppy.io/docs/companion/#provideroptions for reference. Empty by default, which disables providers.
|
|
COMPANION_ONEDRIVE_KEY=
|
|
COMPANION_ONEDRIVE_SECRET=
|