I\'ve configured my EC2 instance as a LAMP, following Amazon\'s tutorial. That appears to be functioning correctly (I can see phpinfo() in a file I\'ve uploaded
I needed to update the /etc/httpd/conf.d/phpMyAdmin.conf to allow remote users.
I just replaced the contents of the first tag like so...
I removed:
AddDefaultCharset UTF-8
# Apache 2.4
Require ip 127.0.0.1
Require ip ::1
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
And replaced it with this:
AddDefaultCharset UTF-8
Order allow,deny
Allow from all
And restarted the server: sudo service httpd restart
Works now!