Bij het bekijken van dit artikel (Hoe activeer ik phpMyAdmin of phpPgAdmin op afstand? een> ), moest ik kijken naar Virtual Machine en niet Amazon cloud / Bitnami Hosting .
Toen ik de /opt/bitnami/apps/phpmyadmin/conf/httpd-app.conf
bestand naar het volgende, heb ik toegang gekregen via [PUBLIC_DNS/YOUR_DOMAIN_NAME/IP]/phpmyadmin].
Belangrijkste wijzigingen zijn:
Allow from all
en
Require all granted
Na de wijzigingen, vergeet niet om de apache-server opnieuw op te starten . (of herstart je instantie)
sudo /opt/bitnami/ctlscript.sh herstart apache
/opt/bitnami/apps/phpmyadmin/conf/httpd-app.conf
<Directory "/opt/bitnami/apps/phpmyadmin/htdocs">
# AuthType Basic
# AuthName phpMyAdmin
# AuthUserFile "/opt/bitnami/apache2/users"
# Require valid-user
AllowOverride None
<IfModule php5_module>
php_value upload_max_filesize 80M
php_value post_max_size 80M
</IfModule>
<IfVersion < 2.3 >
Order allow,deny
Allow from all
Satisfy all
</IfVersion>
<IfVersion >= 2.3>
Require all granted
</IfVersion>
ErrorDocument 403 "For security reasons, this URL is only accesible using localhost (127.0.0.1) as the hostname"
</Directory>
Documentenreferentie:https://docs.bitnami.com/virtual-machine/components /phpmyadmin/