Merge https://github.com/friendica/red into zpull
This commit is contained in:
commit
c07c532336
@ -21,3 +21,6 @@ External Resources
|
|||||||
|
|
||||||
* [Red for Android](https://github.com/cvogeley/red-for-android)
|
* [Red for Android](https://github.com/cvogeley/red-for-android)
|
||||||
|
|
||||||
|
**Utilities**
|
||||||
|
|
||||||
|
* [Debian Install Script](https://github.com/beardy-unixer/lowendscript-ng)
|
||||||
|
@ -74,7 +74,7 @@ $HTTP["url"] =~ "\.(out|log|htaccess)$" {
|
|||||||
url.access-deny = ("")
|
url.access-deny = ("")
|
||||||
}
|
}
|
||||||
|
|
||||||
$HTTP["url"] =~ "(^|/)\.git" {
|
$HTTP["url"] =~ "(^|/)\.git|(^|/)store" {
|
||||||
url.access-deny = ("")
|
url.access-deny = ("")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -124,4 +124,12 @@ server {
|
|||||||
location ~ /\. {
|
location ~ /\. {
|
||||||
deny all;
|
deny all;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#deny access to store
|
||||||
|
|
||||||
|
location ~ /store {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user