Merge pull request #460 from kumy/patch-1

Fix a typo in comment
This commit is contained in:
Jason Wilder 2016-06-12 15:28:40 -06:00 committed by GitHub
commit fc619d63ad
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ upstream {{ $host }} {
{{ $vhostCert := replace $vhostCert ".key" "" -1 }}
{{ end }}
{{/* Use the cert specifid on the container or fallback to the best vhost match */}}
{{/* Use the cert specified on the container or fallback to the best vhost match */}}
{{ $cert := (coalesce $certName $vhostCert) }}
{{ $is_https := (and (ne $cert "") (exists (printf "/etc/nginx/certs/%s.crt" $cert)) (exists (printf "/etc/nginx/certs/%s.key" $cert))) }}