Basic Authentication Support

This commit is contained in:
Albert Murillo Aguirre
2014-12-19 16:26:42 -07:00
committed by Jason Wilder
parent 56b4a2e182
commit 6d646d92f8
2 changed files with 17 additions and 0 deletions
+8
View File
@@ -106,6 +106,10 @@ server {
location / {
proxy_pass http://{{ $host }};
{{ if (exists (printf "/etc/nginx/htpasswd/%s" $host)) }}
auth_basic "Restricted {{ $host }}";
auth_basic_user_file {{ (printf "/etc/nginx/htpasswd/%s" $host) }};
{{ end }}
}
}
{{ else }}
@@ -115,6 +119,10 @@ server {
location / {
proxy_pass http://{{ $host }};
{{ if (exists (printf "/etc/nginx/htpasswd/%s" $host)) }}
auth_basic "Restricted {{ $host }}";
auth_basic_user_file {{ (printf "/etc/nginx/htpasswd/%s" $host) }};
{{ end }}
}
}