By dmm
Hi Guys, I try to install wordpress locally on my ubuntu 18.04. I followed this instruction to install LEMP: https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-lemp-on-ubuntu-18-04
I got Nginx welcome screen, then I install wordpress using this tutorial: https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-nginx-on-ubuntu-14-04
and I get: ERR_CONNECTION_REFUSED
Nginx & php work fine
Nginx status: Active php7.2-fpm: Active
Confiuration file: /etc/nginx/sites-available/default
server {
listen 80;
listen [::]:80;
root /var/www/wordpress/html;
index index.php index.html index.htm index.nginx-debian.html;
server_name localhost;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
include snippets/fastcgi-php.conf;
}
location ~ /\.ht {
deny all;
}
}
I set group permissions:
sudo chown -R www-data:www-data /var/www/wordpress/html
I already try solutions: https://www.digitalocean.com/community/questions/help-me-to-fix-err_connection_refused
Im out of ideas. Any ideas on what my issue is and/or how to fix it?
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!
Hello, @dmm
When this occurs you can also try accessing your site/app via alternative device on a different network in order to test if the issue is present only on a single device.
You can also check your Nginx error log for more detailed error as well.
Regards, Alex
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.