Skip to content

Instantly share code, notes, and snippets.

@binaryk
Created November 1, 2015 09:14
Show Gist options
  • Select an option

  • Save binaryk/31b7d6b4db9a963731f1 to your computer and use it in GitHub Desktop.

Select an option

Save binaryk/31b7d6b4db9a963731f1 to your computer and use it in GitHub Desktop.
<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