Enable basic auth for /login-dev

This commit is contained in:
Devon Mackay 2018-08-08 09:58:25 -04:00
parent 2822ff16c5
commit ae2c6b01ff

View File

@ -15,9 +15,9 @@ data:
#if ($http_x_forwarded_proto != 'https') {
# return 301 https://$host$request_uri;
#}
#location /login-dev {
# try_files $uri @appbasicauth;
#}
location /login-dev {
try_files $uri @appbasicauth;
}
location / {
try_files $uri @app;
}
@ -28,8 +28,8 @@ data:
location @appbasicauth {
include uwsgi_params;
uwsgi_pass unix:///var/run/uwsgi/uwsgi.socket;
#auth_basic "Developer Access";
#auth_basic_user_file /etc/nginx/.htpasswd;
auth_basic "Developer Access";
auth_basic_user_file /etc/nginx/.htpasswd;
}
}
server {