1
0
Fork 0
mirror of https://github.com/nginx-proxy/nginx-proxy synced 2024-05-26 09:26:16 +02:00

Support per-VIRTUAL_HOST Nginx conf files

This commit is contained in:
Mike Dillon 2015-02-22 09:25:50 -08:00
parent a431122d8b
commit 2010332395

View File

@ -107,6 +107,10 @@ server {
add_header Strict-Transport-Security "max-age=31536000; includeSubdomains";
{{ if (exists (printf "/etc/nginx/vhost.d/%s" $host)) }}
include {{ printf "/etc/nginx/vhost.d/%s" $host }};
{{ end }}
location / {
proxy_pass {{ $proto }}://{{ $host }};
{{ if (exists (printf "/etc/nginx/htpasswd/%s" $host)) }}
@ -120,6 +124,10 @@ server {
server {
server_name {{ $host }};
{{ if (exists (printf "/etc/nginx/vhost.d/%s" $host)) }}
include {{ printf "/etc/nginx/vhost.d/%s" $host }};
{{ end }}
location / {
proxy_pass {{ $proto }}://{{ $host }};
{{ if (exists (printf "/etc/nginx/htpasswd/%s" $host)) }}