diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..5500b4b --- /dev/null +++ b/.env.example @@ -0,0 +1,42 @@ +# Traefik Configuration +TRAEFIK_ACME_MAIL=acme@yourdomain.com +TRAEFIK_DOMAIN=traefik.yourdomain.com +# 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=true +# Domain of Traefik, where you can find the dashboard. Defaults to "traefik.owncloud.test" +TRAEFIK_BASIC_AUTH_USERS= + +# oCIS Configuration +OCIS_DOCKER_TAG=latest +OCIS_DOMAIN=owncloud.yourdomain.com +OCIS_LOG_LEVEL=info +OCIS_LOG_COLOR=false +OCIS_INSECURE=false +PROXY_ENABLE_BASIC_AUTH=false +ADMIN_PASSWORD=SOME_STRONG_PASSWORD +DEMO_USERS=false + + +### Wopi server settings ### +# cs3org wopi server version. Defaults to "v8.3.3" +WOPISERVER_DOCKER_TAG= +# cs3org wopi server domain. Defaults to "wopiserver.owncloud.test" +WOPISERVER_DOMAIN=wopi.yourdomain.com +# 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=SOME_JWT_TOKEN + +### Collabora settings ### +# Domain of Collabora, where you can find the frontend. Defaults to "collabora.owncloud.test" +COLLABORA_DOMAIN=collabora.yourdomain.com +# Admin user for Collabora. Defaults to blank, provide one to enable access +COLLABORA_ADMIN_USER=collabora_admin +# Admin password for Collabora. Defaults to blank, provide one to enable access +COLLABORA_ADMIN_PASSWORD=SOME_STRONG_PASSWORD + +### OnlyOffice settings ### +# Domain of OnlyOffice, where you can find the frontend. Defaults to "onlyoffice.owncloud.test" +ONLYOFFICE_DOMAIN=onlyoffice.yourdomain.com \ No newline at end of file