Browse Source

Merge pull request #847 from jwilder/appropriate-trim-earlier

Trim $host and $proto before they are used
Jason Wilder 8 năm trước cách đây
mục cha
commit
e3b6be79fc
1 tập tin đã thay đổi với 6 bổ sung1 xóa
  1. 6 1
      nginx.tmpl

+ 6 - 1
nginx.tmpl

@@ -99,10 +99,14 @@ server {
 {{ end }}
 {{ end }}
 
 
 {{ range $host, $containers := groupByMulti $ "Env.VIRTUAL_HOST" "," }}
 {{ range $host, $containers := groupByMulti $ "Env.VIRTUAL_HOST" "," }}
+
+{{ $host := trim $host }}
 {{ $is_regexp := hasPrefix "~" $host }}
 {{ $is_regexp := hasPrefix "~" $host }}
 {{ $upstream_name := when $is_regexp (sha1 $host) $host }}
 {{ $upstream_name := when $is_regexp (sha1 $host) $host }}
+
 # {{ $host }}
 # {{ $host }}
 upstream {{ $upstream_name }} {
 upstream {{ $upstream_name }} {
+
 {{ range $container := $containers }}
 {{ range $container := $containers }}
 	{{ $addrLen := len $container.Addresses }}
 	{{ $addrLen := len $container.Addresses }}
 
 
@@ -131,7 +135,7 @@ upstream {{ $upstream_name }} {
 {{ $default_server := index (dict $host "" $default_host "default_server") $host }}
 {{ $default_server := index (dict $host "" $default_host "default_server") $host }}
 
 
 {{/* Get the VIRTUAL_PROTO defined by containers w/ the same vhost, falling back to "http" */}}
 {{/* Get the VIRTUAL_PROTO defined by containers w/ the same vhost, falling back to "http" */}}
-{{ $proto := or (first (groupByKeys $containers "Env.VIRTUAL_PROTO")) "http" }}
+{{ $proto := trim (or (first (groupByKeys $containers "Env.VIRTUAL_PROTO")) "http") }}
 
 
 {{/* Get the HTTPS_METHOD defined by containers w/ the same vhost, falling back to "redirect" */}}
 {{/* Get the HTTPS_METHOD defined by containers w/ the same vhost, falling back to "redirect" */}}
 {{ $https_method := or (first (groupByKeys $containers "Env.HTTPS_METHOD")) "redirect" }}
 {{ $https_method := or (first (groupByKeys $containers "Env.HTTPS_METHOD")) "redirect" }}
@@ -205,6 +209,7 @@ server {
 		{{ else }}
 		{{ else }}
 		proxy_pass {{ trim $proto }}://{{ trim $upstream_name }};
 		proxy_pass {{ trim $proto }}://{{ trim $upstream_name }};
 		{{ end }}
 		{{ end }}
+
 		{{ if (exists (printf "/etc/nginx/htpasswd/%s" $host)) }}
 		{{ if (exists (printf "/etc/nginx/htpasswd/%s" $host)) }}
 		auth_basic	"Restricted {{ $host }}";
 		auth_basic	"Restricted {{ $host }}";
 		auth_basic_user_file	{{ (printf "/etc/nginx/htpasswd/%s" $host) }};
 		auth_basic_user_file	{{ (printf "/etc/nginx/htpasswd/%s" $host) }};