From 8c76ea9f9b4957bfa6592bdc6e142a2ba4177e43 Mon Sep 17 00:00:00 2001 From: kumy Date: Tue, 17 May 2016 01:46:46 +0200 Subject: [PATCH] Fix a typo in comment --- nginx.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.tmpl b/nginx.tmpl index 855e90d..41a1905 100644 --- a/nginx.tmpl +++ b/nginx.tmpl @@ -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))) }}