No matching DirectoryIndex (index.html) found phpMyadmin
DirectoryIndex index.html index.php
add this line in phpMyadmin.conf
here is example
<Directory /usr/share/phpMyAdmin/>
AddDefaultCharset UTF-8
DirectoryIndex index.html index.php
<IfModule mod_authz_core.c>
permission denied
change localhost to public IP in phpmyadmin.conf
<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
Require ip 219.91.251.164
Require ip ::1
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 219.91.251.164
Allow from ::1
</IfModule>