fix(nextcloud): update wrong config of app_domains

This commit is contained in:
Nicolas Meienberger 2022-09-19 07:14:49 +02:00
parent 541ce5d195
commit 121469a2f4
3 changed files with 11 additions and 3 deletions

View File

@ -5,7 +5,7 @@
"exposable": true,
"port": 8083,
"id": "nextcloud",
"tipi_version": 3,
"tipi_version": 4,
"version": "24.0.4",
"categories": ["data"],
"description": "Nextcloud is a self-hosted, open source, and fully-featured cloud storage solution for your personal files, office documents, and photos.",
@ -25,7 +25,7 @@
"type": "password",
"label": "Password",
"max": 50,
"min": 3,
"min": 10,
"required": true,
"env_variable": "NEXTCLOUD_ADMIN_PASSWORD"
}

View File

@ -52,7 +52,7 @@ services:
- POSTGRES_DB=nextcloud
- NEXTCLOUD_ADMIN_USER=${NEXTCLOUD_ADMIN_USER}
- NEXTCLOUD_ADMIN_PASSWORD=${NEXTCLOUD_ADMIN_PASSWORD}
- NEXTCLOUD_TRUSTED_DOMAINS=${INTERNAL_IP}:${APP_PORT} ${APP_DOMAIN}
- NEXTCLOUD_TRUSTED_DOMAINS=${APP_DOMAIN}
- TRUSTED_PROXIES=172.16.0.0/12
- OVERWRITEHOST=${APP_DOMAIN}
- OVERWRITEPROTOCOL=${APP_PROTOCOL:-http}

View File

@ -26,4 +26,12 @@ Enterprise? Public Sector or Education user? You may want to have a look into [*
You can also [get support for Nextcloud](https://nextcloud.com/support)!
## Reset password
Nextcloud does not support password resets from environment variables. If you want to change your password run the following commands in your terminal:
```bash
sudo docker exec -u www-data -it nextcloud /bin/bash
php occ user:resetpassword username
```
![](https://raw.githubusercontent.com/nextcloud/screenshots/master/files/Files%20Sharing.png)