Created
November 1, 2015 09:14
-
-
Save binaryk/31b7d6b4db9a963731f1 to your computer and use it in GitHub Desktop.
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
| <Directory /usr/share/phpMyAdmin/> | |
| AddDefaultCharset UTF-8 | |
| <IfModule mod_authz_core.c> | |
| # Apache 2.4 | |
| <RequireAny> | |
| #Require ip 127.0.0.1 | |
| #Require ip ::1 | |
| Require all granted | |
| </RequireAny> | |
| </IfModule> | |
| <IfModule !mod_authz_core.c> | |
| # Apache 2.2 | |
| Order Deny,Allow | |
| Deny from All | |
| Allow from 127.0.0.1 | |
| Allow from ::1 | |
| </IfModule> | |
| </Directory> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment