Prevents Apache from serving CLI scripts

This commit is contained in:
Hypolite Petovan 2020-09-07 05:43:20 -04:00
commit 3bd8b81154
3 changed files with 15 additions and 2 deletions

10
bin/.htaccess Normal file
View file

@ -0,0 +1,10 @@
# This file prevents browser access to Friendica command-line scripts on Apache-powered web servers.
# It isn't meant to be edited manually, please check the base Friendica folder for the .htaccess-dist file instead.
<IfModule authz_host_module>
Require all denied
</IfModule>
<IfModule !authz_host_module>
Order Allow,Deny
Deny from all
</IfModule>