aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/External-Resources.md3
-rw-r--r--doc/install/sample-lighttpd.conf2
-rw-r--r--doc/install/sample-nginx.conf8
3 files changed, 12 insertions, 1 deletions
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)
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 = ("")
}
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;
+ }
+
+
}