diff --git a/config/nginx_default.conf b/config/nginx_default.conf index 932a28a..b705dca 100644 --- a/config/nginx_default.conf +++ b/config/nginx_default.conf @@ -43,10 +43,22 @@ http { access_log /logs/nginx_ip_access; + location = / { + root /app; + try_files $uri /override.html @auth; + } + location / { root /app; - index override.html login.html; - try_files $uri $uri/ =404; + auth_basic "Restricted Content"; + auth_basic_user_file /app/.htpasswd; + try_files $uri =404; + } + location @auth { + root /app; + auth_basic "Restricted Content"; + auth_basic_user_file /app/.htpasswd; + try_files $uri =404; } location /tlgrm { @@ -85,7 +97,6 @@ http { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_read_timeout 5d; } - # The DoH server block location /dns-query { access_log /logs/nginx_doh_access; proxy_http_version 1.1; @@ -113,10 +124,22 @@ http { # access_log /logs/nginx_domain_access; + # location = / { + # root /app; + # try_files $uri /override.html @auth; + # } + # location / { # root /app; - # index override.html login.html; - # try_files $uri $uri/ =404; + # auth_basic "Restricted Content"; + # auth_basic_user_file /app/.htpasswd; + # try_files $uri =404; + # } + # location @auth { + # root /app; + # auth_basic "Restricted Content"; + # auth_basic_user_file /app/.htpasswd; + # try_files $uri =404; # } # location @php { @@ -150,7 +173,6 @@ http { # proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; # proxy_read_timeout 5d; # } - # # The DoH server block # location /dns-query { # access_log /logs/nginx_doh_access; # proxy_http_version 1.1;