Am Nginx care rulează pe serverul Ubuntu (ocean digital), am configurat stiva LEMP pentru găzduirea site-ului web Wordpress. Primesc 501 Poarta proastă când încerc să ajung la site folosind adresa IP.
Văd aceste erori în jurnal:
2022/05/24 14:43:52 [eroare] 199802#199802: *3 connect() a eșuat (111: Conexiune refuzată) în timpul conectării la upstream, client: 212.58.120.29, server: localhost, cerere: „GET /ttemp .php HTTP/1.1”, în amonte: „fastcgi://127.0.0.1:9000”, gazdă: „46.101.238.240”
2022/05/24 14:43:52 [eroare] 199802#199802: *3 connect() a eșuat (111: Conexiune refuzată) în timpul conectării la upstream, client: 212.58.120.29, server: localhost, cerere: „GET /favicon .ico HTTP/1.1”, în amonte: „fastcgi://127.0.0.1:9000”, gazdă: „46.101.238.240”, referitor: „https://46.101.238.240/ttemp.php”
Și iată configurația mea Nginx:
Server {
asculta 80;
asculta 443 ssl;
ssl_certificate /var/www/ssl/default.crt;
ssl_certificate_key /var/www/ssl/default.key;
server_name localhost mydomain.com www.mydomain.com;
rădăcină /var/www/mydomain.com;
error_log /var/log/nginx/error.log informații;
Locație / {
try_files $uri $uri/ /index.php?$args;
index index.html index.htm index.php;
}
locație ~ \.php$ {
try_files $uri =404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Și starea mea UFW:
La Acțiune De la
-- ------ ----
Nginx HTTP ALLOW oriunde
Nginx HTTPS PERMITĂ oriunde
22/tcp PERMITERE oriunde
22 PERMITERE oriunde
2222 PERMITĂ oriunde
3306 PERMITERE oriunde
80 PERMITĂ oriunde
443 PERMITERE oriunde
9000 PERMITĂ oriunde
Nginx HTTP (v6) PERMITERE oriunde (v6)
Nginx HTTPS (v6) ALLOW Anywhere (v6)
22/tcp (v6) PERMITERE oriunde (v6)
22 (v6) PERMITERE oriunde (v6)
2222 (v6) PERMITERE oriunde (v6)
3306 (v6) PERMITERE oriunde (v6)
80 (v6) PERMITERE oriunde (v6)
443 (v6) PERMITERE oriunde (v6)
9000 (v6) PERMITERE oriunde (v6)
Vreo idee?