joininbox/scripts/jam-remote/nginx/snippets/proxy-params.conf
openoms ee21910681
Install Jam on a linux desktop and connect to a remote Joininbox (#99)
* add files to install jam to connect remotely
* update jam and nginx conf
* use ${USERNAME} consistently
* jam update to v0.1.1
* use dergigi's pubkey to verify
* docs update
2022-10-09 13:29:20 +01:00

15 lines
369 B
Text

# proxy-params.conf
proxy_redirect off;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto http;
proxy_read_timeout 600;
proxy_connect_timeout 600;
proxy_send_timeout 600;
# remove if not needed
# proxy_set_header X-Forwarded-Host $server_name;