From 22bafef661685e92d04e90723505812e3923488d Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Tue, 5 May 2026 16:44:32 -0500 Subject: [PATCH] Move dotfile denial up Signed-off-by: Eric Nemchik --- .../nginx/site-confs/default.conf.sample | 37 ++++++++----------- 1 file changed, 16 insertions(+), 21 deletions(-) diff --git a/root/defaults/nginx/site-confs/default.conf.sample b/root/defaults/nginx/site-confs/default.conf.sample index 51d0dfa..0653f9c 100644 --- a/root/defaults/nginx/site-confs/default.conf.sample +++ b/root/defaults/nginx/site-confs/default.conf.sample @@ -1,4 +1,4 @@ -## Version 2026/02/08 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/site-confs/default.conf.sample +## Version 2026/05/05 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/site-confs/default.conf.sample # redirect all traffic to https server { @@ -24,6 +24,18 @@ server { root /config/www; index index.html index.htm index.php; + # Allow access to the ".well-known" directory + location ^~ /.well-known { + allow all; + } + + # deny access to all dotfiles + location ~ /\. { + access_log off; + log_not_found off; + return 404; + } + # enable subfolder method reverse proxy confs include /config/nginx/proxy-confs/*.subfolder.conf; @@ -32,10 +44,8 @@ server { # enable for Authelia (requires authelia-location.conf in the location block) #include /config/nginx/authelia-server.conf; - # enable for Authentik (requires authentik-location.conf in the location block) #include /config/nginx/authentik-server.conf; - location / { # enable for basic auth #auth_basic "Restricted"; @@ -46,10 +56,8 @@ server { # enable for Authelia (requires authelia-server.conf in the server block) #include /config/nginx/authelia-location.conf; - # enable for Authentik (requires authentik-server.conf in the server block) #include /config/nginx/authentik-location.conf; - try_files $uri $uri/ /index.html /index.htm /index.php$is_args$args; } @@ -63,29 +71,16 @@ server { # enable for Authelia (requires authelia-server.conf in the server block) #include /config/nginx/authelia-location.conf; - # enable for Authentik (requires authentik-server.conf in the server block) #include /config/nginx/authentik-location.conf; - fastcgi_split_path_info ^(.+\.php)(.*)$; - if (!-f $document_root$fastcgi_script_name) { return 404; } + if (!-f $document_root$fastcgi_script_name) { + return 404; + } fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include /etc/nginx/fastcgi_params; } - - # deny access to all dotfiles - location ~ /\. { - deny all; - log_not_found off; - access_log off; - return 404; - } - - # Allow access to the ".well-known" directory - location ^~ /.well-known { - allow all; - } } # enable subdomain method reverse proxy confs