Last active
September 17, 2017 15:14
-
-
Save awakekat/51b061c4727bf6b53aaa0f5394df08ff to your computer and use it in GitHub Desktop.
Securing your installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# secure install page | |
<Files install.php> | |
# Apache < 2.3 | |
<IfModule !mod_authz_core.c> | |
Order allow,deny | |
Deny from all | |
Satify All | |
</IfModule> | |
# Apache >= 2.3 | |
<IfModule mod_authz_core.c> | |
Require all denied | |
</IfModule> | |
</Files> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment