diff options
author | friendica <info@friendica.com> | 2014-01-21 00:20:30 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-21 00:20:30 -0800 |
commit | c07c53233666b1654b087ddb59a50384960d7a46 (patch) | |
tree | 4c471f03bd11c706bf0defcbae096ac95e06a17a | |
parent | 8a5c7470104af34f838a889c429e27aa3143d40b (diff) | |
parent | bab20689cfa5c1f4f5980e393ec229aeadd7b483 (diff) | |
download | volse-hubzilla-c07c53233666b1654b087ddb59a50384960d7a46.tar.gz volse-hubzilla-c07c53233666b1654b087ddb59a50384960d7a46.tar.bz2 volse-hubzilla-c07c53233666b1654b087ddb59a50384960d7a46.zip |
Merge https://github.com/friendica/red into zpull
-rw-r--r-- | doc/External-Resources.md | 3 | ||||
-rw-r--r-- | doc/install/sample-lighttpd.conf | 2 | ||||
-rw-r--r-- | doc/install/sample-nginx.conf | 8 |
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; + } + + } |