Ajout de docker_nextcloud_trusted_proxies
This commit is contained in:
parent
a434c78d0a
commit
627cea68e6
2 changed files with 3 additions and 0 deletions
|
@ -37,6 +37,7 @@ docker_nextcloud_php_ini:
|
|||
| docker_nextcloud_php_ini | | Une liste de variables d'environnement pour la configuration de healtchecks |
|
||||
| docker_nextcloud_custom_volumes | | Si défini, liste de dictionnaires (volume, target) permettant d'ajouter des volumes spécifiques a docker-compose |
|
||||
| docker_nextcloud_healthchecks_url | | Si définie, cette url est appelée par la tâche en crontab pour notifier healthchecks |
|
||||
| docker_nextcloud_trusted_proxies | | Si définie, reverse proxies en lesquels nextcloud peut avoir confiance |
|
||||
|
||||
## Configuration de nextcloud
|
||||
|
||||
|
|
|
@ -33,7 +33,9 @@ services:
|
|||
- SMTP_HOST={{ docker_nextcloud_smtp_host }}
|
||||
- OVERWRITEPROTOCOL=https
|
||||
- OVERWRITECLIURL=https://{{ docker_nextcloud_fqdn }}
|
||||
{% if docker_nextcloud_trusted_proxies is defined %}
|
||||
- TRUSTED_PROXIES={{ docker_nextcloud_trusted_proxies }}
|
||||
{% endif %}
|
||||
|
||||
db:
|
||||
image: postgres:14
|
||||
|
|
Loading…
Reference in a new issue