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?
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.
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
Click below to sign up and get $100 of credit to try our products over 60 days!
vpsfix - yes. I used this one: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu-18-04
I also delete cache from chrome and restart all services.
Did you check your firewall?