From 5550a603b1f6fa7f88df3c2d72850e2da7d9e552 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 23 Mar 2017 18:12:34 +0100 Subject: [PATCH] bugfix nginx --- etc/nginx/conf.d/default.conf | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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; - } } -- 2.39.5