Compare commits

...
Author SHA1 Message Date
stevensting 8d46dd808e Merge branch 'main' into trusted-domains 2026-08-27 10:51:22 +00:00
stevensting 0b58b1ef85 fix wrong commit 2026-08-27 12:47:56 +02:00
stevensting 166394587d add documentation, fix review findings 2026-08-27 12:44:10 +02:00
stevensting fc72b033b8 adapt env sample 2026-08-25 15:06:17 +02:00
stevensting 6cc3e151c1 fix trusted domains 2026-08-25 14:59:44 +02:00
Linus Gasser 65e13ff3f3 chore: publish 14.1.1+33.0.8-fpm release 2026-08-14 12:47:36 +02:00
3 changed files with 18 additions and 2 deletions
+2
View File
@@ -6,6 +6,8 @@ ENABLE_BACKUPS=true
DOMAIN=nextcloud.example.com
## Domain aliases
#EXTRA_DOMAINS=', `www.nextcloud.example.com`'
# space separated list of trusted domains, only evaluated on first startup
#EXTRA_DOMAINS_TRUSTED=cloud.coquest.coop
LETS_ENCRYPT_ENV=production
COMPOSE_FILE="compose.yml"
+14
View File
@@ -24,6 +24,20 @@ Fully automated luxury Nextcloud via docker-swarm.
* `abra app secret generate -a <app-name>`
* `abra app deploy <app-name>`
### Accessing nextcloud from multiple domains
If you want to access the nextcloud instance from multiple domains, add the additional domains by using both env vars:
```
EXTRA_DOMAINS=', `nextcloud.example2.com`' # comma separated, for traefik
EXTRA_DOMAINS_TRUSTED=nextcloud.example2.com # space separated, for nextcloud
```
`EXTRA_DOMAINS_TRUSTED` is only evaluated by nextcloud on the first install. If you want to add domains later, you need to run this command additionally:
```
abra app cmd nextcloud.example.com app run_occ '"config:system:set trusted_domains <index> --value="nextcloud.example2.com""'
```
The indices 0 and 1 are taken, start with 2 for the first extra domain.
### Onlyoffice Integration
First, install onlyoffice following the instructions in the
+2 -2
View File
@@ -70,7 +70,7 @@ services:
- STACK_NAME
- NEXTCLOUD_ADMIN_USER=${ADMIN_USER}
- NEXTCLOUD_ADMIN_PASSWORD_FILE=/run/secrets/admin_password
- NEXTCLOUD_TRUSTED_DOMAINS=${DOMAIN}
- NEXTCLOUD_TRUSTED_DOMAINS=${DOMAIN} ${EXTRA_DOMAINS_TRUSTED}
- TRUSTED_PROXIES=10.0.0.0/8
- REDIS_HOST=cache
- OVERWRITEPROTOCOL=https
@@ -95,7 +95,7 @@ services:
failure_action: rollback
order: start-first
labels:
- "coop-cloud.${STACK_NAME}.version=14.1.0+33.0.7-fpm"
- "coop-cloud.${STACK_NAME}.version=14.1.1+33.0.8-fpm"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT}"
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
- "backupbot.backup.volumes.redis=false"