Ho nginx in esecuzione sulla porta 81. Posso usare Telnet telnet 127.0.0.1 81
e tutto va bene.
Ma quando provo a telnet sul mio computer dal mio Mac (un indirizzo IP esterno), ottengo solo questo errore:
telnet: connect to address 109.123.x.x: Connection refused
telnet: Unable to connect to remote host
Ecco il mio / etc / nginx / siti-disponibili / file predefinito:
server {
listen 81; ## listen for ipv4; this line is default and implied
#listen [::]:80 default ipv6only=on; ## listen for ipv6
root /usr/share/nginx/www;
index index.html index.htm;
# Make site accessible from http://localhost/
server_name 109.123.x.x;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to index.html
try_files $uri $uri/ /index.html;
}
...
Ho aperto Ubuntu Firewall (ufw) per consentire la porta 81.
Sono totalmente bloccato ora.
Qualcuno ha qualche idea?