diff --git a/deploy/kubernetes/atst-nginx-configmap.yml b/deploy/kubernetes/atst-nginx-configmap.yml index d210d7c3..b30ff73d 100644 --- a/deploy/kubernetes/atst-nginx-configmap.yml +++ b/deploy/kubernetes/atst-nginx-configmap.yml @@ -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 {