Tengo nginx ejecutándose en el puerto 81. Puedo usar telnet telnet 127.0.0.1 81
y todo está bien.
Pero cuando trato de hacer telnet a mi máquina desde mi Mac (una dirección IP externa), aparece este error:
telnet: connect to address 109.123.x.x: Connection refused
telnet: Unable to connect to remote host
Aquí está mi archivo / etc / nginx / sites-available / default:
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;
}
...
Abrí Ubuntu Firewall (ufw) para permitir el puerto 81.
Estoy totalmente atascado ahora.
¿Alguien tiene alguna idea?