Skip to content

Instantly share code, notes, and snippets.

@awakekat
Last active September 17, 2017 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awakekat/51b061c4727bf6b53aaa0f5394df08ff to your computer and use it in GitHub Desktop.
Save awakekat/51b061c4727bf6b53aaa0f5394df08ff to your computer and use it in GitHub Desktop.
Securing your installation
# 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