আমার পোর্ট ৮১ এ এনজিনেক্স চলছে I আমি টেলনেট ব্যবহার করতে পারি telnet 127.0.0.1 81
এবং সবকিছু ঠিক আছে।
তবে যখন আমি আমার ম্যাক (একটি বাহ্যিক আইপি ঠিকানা) থেকে আমার মেশিনে টেলনেট করার চেষ্টা করি, তখন আমি কেবল এই ত্রুটিটি পাই:
telnet: connect to address 109.123.x.x: Connection refused
telnet: Unable to connect to remote host
এখানে আমার / ইত্যাদি / এনগিনেক্স / সাইটগুলি উপলব্ধ / ডিফল্ট ফাইল রয়েছে:
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;
}
...
আমি পোর্ট ৮১ ব্যবহারের জন্য উবুন্টু ফায়ারওয়াল (ufw) খুলেছি opened
আমি এখন পুরোপুরি আটকে আছি
কারো কোন ধারণা আছে?