This commit is contained in:
friendica 2014-01-21 00:20:30 -08:00
commit c07c532336
3 changed files with 12 additions and 1 deletions

View File

@ -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)

View File

@ -74,7 +74,7 @@ $HTTP["url"] =~ "\.(out|log|htaccess)$" {
url.access-deny = ("")
}
$HTTP["url"] =~ "(^|/)\.git" {
$HTTP["url"] =~ "(^|/)\.git|(^|/)store" {
url.access-deny = ("")
}

View File

@ -124,4 +124,12 @@ server {
location ~ /\. {
deny all;
}
#deny access to store
location ~ /store {
deny all;
}
}