Skip to content
Snippets Groups Projects
Commit eff7cdd7 authored by LecygneNoir's avatar LecygneNoir Committed by Chocobozzz
Browse files

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

parent 4293e362
No related branches found
No related tags found
No related merge requests found
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment