From: Guillaume Pellerin Date: Thu, 23 Mar 2017 17:12:34 +0000 (+0100) Subject: bugfix nginx X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=5550a603b1f6fa7f88df3c2d72850e2da7d9e552;p=mezzo.git bugfix nginx --- diff --git a/etc/nginx/conf.d/default.conf b/etc/nginx/conf.d/default.conf index 87d81e95..7971650d 100644 --- a/etc/nginx/conf.d/default.conf +++ b/etc/nginx/conf.d/default.conf @@ -35,9 +35,8 @@ server { location / { uwsgi_pass app:8000; include /etc/nginx/uwsgi_params; + + # Uncomment to restrict access with login/pass + #auth_basic_user_file /etc/nginx/htpasswd; } - - # Uncomment to restrict access with login/pass - #auth_basic_user_file /etc/nginx/htpasswd; - } }