ระบบปฏิบัติการ: Funtoo ฉันผูก NGINX กับพอร์ต 81 (ฉันต้องการเรียกใช้พร้อมกับเซิร์ฟเวอร์ Apache ของฉันในช่วงเวลาสั้น ๆ เพื่อความสะดวกในการเปลี่ยน) และฟังพอร์ต (ถ้าฉันชี้ไปที่พอร์ตอื่นโดยใช้ wget ฉันจะได้รับ "การเชื่อมต่อถูกปฏิเสธ" แต่ใช้พอร์ต 81 ฉันได้ "เชื่อมต่อ") แต่มันไม่ตอบสนอง HTML ทุกชนิด!
เมื่อใช้ wget บนพอร์ตจาก localhost ฉันจะได้รับ:
# wget localhost:81
-2014-04-16 23:56:45- http://localhost:81/
Resolving localhost... 127.0.0.1
Connecting to localhost|127.0.0.1|:81... connected.
HTTP request sent, awaiting response...
บนคอมพิวเตอร์เครื่องอื่น ...
$ wget 192.168.18.42:81
-2014-04-16 23:57:19- http://192.168.18.42:81/
Connecting to 192.168.18.42:81... connected.
HTTP request sent, awaiting response...
ไม่มีอะไรเกิดขึ้นหลังจากนั้น เอกสารที่มีอยู่มันเป็นเรื่องปกติของ Funtoo nginx.conf
UPDATE: ฉันสามารถฟังพอร์ต 80 ได้ แต่ก็ยังเขย่าฉันว่าฉันไม่สามารถใช้งานพอร์ตใดก็ได้ ...
netstat -aWn | grep 81 | grep LISTEN
tcp 60 0 0.0.0.0:81 0.0.0.0:* LISTEN
แก้ไข: ไฟล์กำหนดค่า:
user nginx nginx;
worker_rlimit_nofile 6400;
error_log /var/log/nginx/error_log info;
events {
worker_connections 1024;
use epoll;
}
http {
include /etc/nginx/mime.types;
# This causes files with an unknown MIME type to trigger a download action in the browser:
default_type application/octet-stream;
log_format main
'$remote_addr - $remote_user [$time_local] '
'"$request" $status $bytes_sent '
'"$http_referer" "$http_user_agent" '
'"$gzip_ratio"';
client_max_body_size 64m;
# Don't follow symlink if the symlink's owner is not the target owner.
disable_symlinks if_not_owner;
server_tokens off;
ignore_invalid_headers on;
gzip off;
gzip_vary on;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript text/x-js image/x-icon image/bmp;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
index index.html;
include /etc/nginx/sites-enabled/*;
}
เซิร์ฟเวอร์บล็อก:
server {
listen *:81;
root /usr/share/nginx/html;
location / {
index index.html;
}
}
iptables
) หรือไม่ ถ้าเป็นเช่นนั้นคุณจำได้ว่าจะอนุญาตให้พอร์ต 81?