Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
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.
This question was answered by @FireDart:
I have to ask, did you restart nginx?
$ sudo service nginx restartAs well phpMyAdmin is based of php. Did you configure php in your
server {}block?$ sudo nano /etc/nginx/sites-available/defaultCheck for
location ~\.php$ { }server { . . . . . . other configs.... . . . . . . location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }Then restart:
$ sudo service nginx restartI installed nginx & php my self and did not use the automatic installer so I’m not 100% sure how it differs.