From 583be04583989cdb81dcbc6465f58272be10dc65 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Tue, 21 Jan 2014 05:26:59 +0000 Subject: Debian install script doco --- doc/External-Resources.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/External-Resources.md b/doc/External-Resources.md index 22454e2a9..4048b4b20 100644 --- a/doc/External-Resources.md +++ b/doc/External-Resources.md @@ -21,3 +21,6 @@ External Resources * [Red for Android](https://github.com/cvogeley/red-for-android) +**Utilities** + +* [Debian Install Script](https://github.com/beardy-unixer/lowendscript-ng) -- cgit v1.2.3 From 8c4f7216ed04263b5c55b401109390ff5ee2d92c Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Tue, 21 Jan 2014 05:51:54 +0000 Subject: Nginx conf update --- doc/install/sample-nginx.conf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/install/sample-nginx.conf b/doc/install/sample-nginx.conf index 396e39fb8..cd12d8dea 100644 --- a/doc/install/sample-nginx.conf +++ b/doc/install/sample-nginx.conf @@ -124,4 +124,12 @@ server { location ~ /\. { deny all; } + +#deny access to store + + location ~ /store { + deny all; + } + + } -- cgit v1.2.3 From 19b6ed68c164564cb6b20249eb018684d4ce44f6 Mon Sep 17 00:00:00 2001 From: marijus Date: Tue, 21 Jan 2014 08:51:21 +0100 Subject: lighttpd sample conf update --- doc/install/sample-lighttpd.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/install/sample-lighttpd.conf b/doc/install/sample-lighttpd.conf index 213719ac9..721fa25ea 100644 --- a/doc/install/sample-lighttpd.conf +++ b/doc/install/sample-lighttpd.conf @@ -74,7 +74,7 @@ $HTTP["url"] =~ "\.(out|log|htaccess)$" { url.access-deny = ("") } -$HTTP["url"] =~ "(^|/)\.git" { +$HTTP["url"] =~ "(^|/)\.git|(^|/)store" { url.access-deny = ("") } -- cgit v1.2.3