1
0
Fork 0

Configure docker image to accept trust_proxy as an env variable in json array (#1338)

This commit is contained in:
LecygneNoir 2018-10-22 19:11:01 +02:00 committed by Chocobozzz
parent 4293e362af
commit eff7cdd7b7
2 changed files with 7 additions and 2 deletions

View File

@ -3,7 +3,10 @@ PEERTUBE_DB_PASSWORD=postgres_password
PEERTUBE_WEBSERVER_HOSTNAME=domain.tld
PEERTUBE_WEBSERVER_PORT=443
PEERTUBE_WEBSERVER_HTTPS=true
PEERTUBE_TRUST_PROXY=127.0.0.1
# If you need more than one IP as trust_proxy
# pass them as a comma separated array:
PEERTUBE_TRUST_PROXY=["127.0.0.1"]
#PEERTUBE_TRUST_PROXY=["127.0.0.1", "loopback", "192.168.1.0/24"]
PEERTUBE_SMTP_USERNAME=
PEERTUBE_SMTP_PASSWORD=
PEERTUBE_SMTP_HOSTNAME=

View File

@ -7,7 +7,9 @@ webserver:
__name: "PEERTUBE_WEBSERVER_HTTPS"
__format: "json"
trust_proxy: "PEERTUBE_TRUST_PROXY"
trust_proxy:
__name: "PEERTUBE_TRUST_PROXY"
__format: "json"
database:
hostname: "PEERTUBE_DB_HOSTNAME"