Browse Source

Merge pull request #1163 from cheald/unique-upstreams

Suffix upstream names to prevent confusion with FQDNs
Nicolas Duchon 4 years ago
parent
commit
5c1a1c8a6d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      nginx.tmpl

+ 1 - 1
nginx.tmpl

@@ -172,7 +172,7 @@ server {
 
 {{ $host := trim $host }}
 {{ $is_regexp := hasPrefix "~" $host }}
-{{ $upstream_name := when $is_regexp (sha1 $host) $host }}
+{{ $upstream_name := (print (when $is_regexp (sha1 $host) $host) "-upstream") }}
 
 # {{ $host }}
 upstream {{ $upstream_name }} {