ポート81でnginxを実行しています。Telnetを使用できtelnet 127.0.0.1 81
、すべて問題ありません。
しかし、Mac(外部IPアドレス)から自分のマシンにTelnet接続しようとすると、次のエラーが発生します。
telnet: connect to address 109.123.x.x: Connection refused
telnet: Unable to connect to remote host
これが私の/ 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;
}
...
Ubuntu Firewall(ufw)を開いてポート81を許可しました。
私は今、完全に行き詰まっています。
誰かアイデアはありますか?