From 2ebf2ed2b52e34d3ec4764a46e01c8decf5cfd4d Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Tue, 16 Jul 2024 20:44:19 -0500 Subject: [PATCH] Delete root/defaults/nginx/site-confs/default.conf.sample redundant to base --- .../nginx/site-confs/default.conf.sample | 38 ------------------- 1 file changed, 38 deletions(-) delete mode 100644 root/defaults/nginx/site-confs/default.conf.sample diff --git a/root/defaults/nginx/site-confs/default.conf.sample b/root/defaults/nginx/site-confs/default.conf.sample deleted file mode 100644 index dac1847..0000000 --- a/root/defaults/nginx/site-confs/default.conf.sample +++ /dev/null @@ -1,38 +0,0 @@ -## Version 2024/06/30 - Changelog: https://github.com/linuxserver/docker-grocy/commits/master/root/defaults/nginx/site-confs/default.conf.sample - -server { - listen *:80 default_server; - listen *:443 ssl default_server; - - server_name _; - - include /config/nginx/ssl.conf; - - root /app/www/public; - index index.html index.htm index.php; - - location / { - # enable for basic auth - #auth_basic "Restricted"; - #auth_basic_user_file /config/nginx/.htpasswd; - - try_files $uri $uri/ /index.html /index.htm /index.php$is_args$args; - } - - location ~ ^(.+\.php)(.*)$ { - # enable the next two lines for http auth - #auth_basic "Restricted"; - #auth_basic_user_file /config/nginx/.htpasswd; - - fastcgi_split_path_info ^(.+\.php)(.*)$; - 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 .htaccess/.htpasswd files - location ~ /\.ht { - deny all; - } -}