From 94f3d9849f68a8da5970a53843e4a21aab0651e3 Mon Sep 17 00:00:00 2001 From: Jason Wilder Date: Tue, 21 Oct 2014 18:10:52 -0600 Subject: [PATCH] Inline /etc/nginx/proxy_params /etc/nginx/proxy_params does not exist in the official nginx image. --- nginx.tmpl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nginx.tmpl b/nginx.tmpl index 2f1eac4..c50eb0b 100644 --- a/nginx.tmpl +++ b/nginx.tmpl @@ -50,7 +50,10 @@ server { location / { proxy_pass http://{{ $host }}; - include /etc/nginx/proxy_params; + 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 $scheme; # HTTP 1.1 support proxy_http_version 1.1;