mirror of https://github.com/Chocobozzz/PeerTube
Configure docker image to accept trust_proxy as an env variable in json array (#1338)
parent
4293e362af
commit
eff7cdd7b7
|
@ -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=
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue