Question
Installed PhpMyAdmin On Nginx For Drupal But I Get 404 Error
I created a new droplet with the Drupal application and the DO system chose the nginx web server. I needed to install phpmyadmin so I followed the DO tutorial on how to setup phpmyadmin on nginx and installed phpmyadmin and also create a symbolic link it ( sudo ln -s /usr/share/phpmyadmin /usr/share/nginx/html ) but going to http://my-ip/phpmyadmin gives a 404 error.
I have never used nginx before, what can I do to fix this please. Thanks.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
I have to ask, did you restart nginx?
As well phpMyAdmin is based of php. Did you configure php in your
server {}
block?Check for
location ~\.php$ { }
Then restart:
I installed nginx & php my self and did not use the automatic installer so I’m not 100% sure how it differs.