Når du kigger på denne artikel (Hvordan aktiverer man eller får man fjernadgang til phpAdmin? a> ), jeg havde brug for at se på Virtual Machine og ikke Amazon cloud / Bitnami Hosting .
Da jeg ændrede /opt/bitnami/apps/phpmyadmin/conf/httpd-app.conf
fil til følgende, jeg var i stand til at få adgang via [PUBLIC_DNS/YOUR_DOMAIN_NAME/IP]/phpmyadmin].
De vigtigste ændringer er:
Allow from all
og
Require all granted
Efter ændringerne, husk at genstarte apache-serveren . (eller genstart din instans)
sudo /opt/bitnami/ctlscript.sh genstart 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>
Docs Ref:https://docs.bitnami.com/virtual-machine/components /phpmyadmin/