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.
Accepted Answer
Hello,
You have to change the fastcgi_pass php; part to your actual address of your FastCGI backend. The address can be specified as a TCP socket (IP and Port):
fastcgi_pass 127.0.0.1:9000;
or as a UNIX-domain socket path:
`` fastcgi_pass unix:/tmp/fastcgi.socket
Note that this would depend on your PHP FPM configuration.
If you have not yet installed and configured PHP-FPM, I would recommend taking a look at stpe 3 here in this article:
https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-ubuntu-18-04
Hope that this helps!
Regards,
Bobby
Thank you Bobby, I am able to get the adminer login screen.
Here’s the changes that I made: Installed universe and php-frm, php-mysql
sudo add-apt-repository universe
sudo apt install php-fpm php-mysql
Added the following node to the /etc/nginx/sites-enabled/admin file:
server {
server_name <MyDigitalOceanIpAddress>;
listen 8081;
root /var/www/admin;
index adminer.php;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}