phpmyadmin script


SUBMITTED BY: estobayus

DATE: Nov. 28, 2022, 6:30 a.m.

FORMAT: Text only

SIZE: 411 Bytes

HITS: 60875

  1. <Directory /usr/share/phpMyAdmin/>
  2. AddDefaultCharset UTF-8
  3. <IfModule mod_authz_core.c>
  4. # Apache 2.4
  5. <RequireAny>
  6. Require all granted
  7. Require ip 127.0.0.1
  8. Require ip ::1
  9. </RequireAny>
  10. </IfModule>
  11. <IfModule !mod_authz_core.c>
  12. # Apache 2.2
  13. Order Deny,Allow
  14. Allow from All
  15. Allow from 127.0.0.1
  16. Allow from ::1
  17. </IfModule>
  18. </Directory>

comments powered by Disqus