Skip to content

Commit 87a1fe6

Browse files
committed
fix problem
1 parent 22b6b95 commit 87a1fe6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nginx-proxy/templates/service.ctmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{{range services}}
22
{{if in .Tags "entrypoint"}}
33
{{range service .Name "any"}}
4-
{{if eq .Port "80"}}
4+
{{if eq .Port 80}}
55
server {
66
listen 80;
77
server_name {{.Name}}.dev;
@@ -24,7 +24,7 @@
2424
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
2525
}
2626
{{end}}
27-
{{if eq .Port "443"}}
27+
{{if eq .Port 443}}
2828
#Coming soon
2929
{{end}}
3030
{{end}}

0 commit comments

Comments
 (0)