Fix a typo in comment

This commit is contained in:
kumy 2016-05-17 01:46:46 +02:00
parent 0ef8dca98c
commit 8c76ea9f9b
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ upstream {{ $host }} {
{{ $vhostCert := replace $vhostCert ".crt" "" -1 }}
{{ $vhostCert := replace $vhostCert ".key" "" -1 }}
{{/* 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))) }}