mirror of
https://github.com/Thumbscrew/nginx-docker-compose.git
synced 2024-11-13 01:23:54 +00:00
7 lines
316 B
Plaintext
7 lines
316 B
Plaintext
|
add_header X-Served-By $host;
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Forwarded-Scheme $scheme;
|
||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
proxy_pass $forward_scheme://$server:$port$request_uri;
|