mirror of
https://github.com/openoms/joininbox.git
synced 2026-08-15 12:50:37 +02:00
* 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
15 lines
369 B
Text
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;
|
|
|