포트 81에서 nginx를 실행하고 있습니다. telnet을 사용할 수 telnet 127.0.0.1 81
있으며 모든 것이 정상입니다.
그러나 내 Mac (외부 IP 주소)에서 내 컴퓨터로 텔넷하려고하면이 오류가 발생합니다.
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;
}
...
포트 81을 허용하기 위해 Ubuntu Firewall (ufw)을 열었습니다.
나는 지금 완전히 붙어있다.
누구든지 아이디어가 있습니까?