Nginxはポートでリッスンし、ポート80に設定されている場合にのみ応答します。

Nginxはポートでリッスンし、ポート80に設定されている場合にのみ応答します。

オペレーティングシステム:Funtoo。 NGINXがポート81にバインドされていて(簡単な切り替えのために短時間Apacheサーバーで実行したい)、そのポートでリッスンします(wgetを使用して別のポートを指すと、「接続が拒否されました」というメッセージが表示されますが、ポート81では「接続済み」と表示されますが、どのようなHTML応答も提供しません!

localhostのポートでwgetを実行すると、次の結果が表示されます。

# 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です。

アップデート:ポート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;
    }
}

答え1

次のサーバーブロックを試してください。

server {
   listen       81 default_server;
    server_name _;    
    root    /usr/share/nginx/html;
    location / {
        index   index.html;
    }
}

アンダースコアは_ワイルドカードなので、期待*:81どおりに機能しない可能性があります。ポート番号のみを使用してください。

次に、次のコマンドを使用して設定をテストしますnginx -t

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

nginxを再起動します。

service nginx restart

netstat を使用して以下をテストします。

root@gitlab:~# netstat -napl | grep 80
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      7903/nginx      
tcp        0      0 127.0.0.1:8080          0.0.0.0:*               LISTEN      2662/unicorn.

修正する

テストシステムにnginxがインストールされています。ストックnginx.confファイルを見て、1行を次に変更して/etc/nginx/sites-enabled/defaultポート81でファイルを検索できました。

cat /etc/nginx/sites-enabled/default
server {

    listen   81;
    server_name localhost;
    root /usr/share/nginx/www;
    index index.html index.htm;


    location / {
        try_files $uri $uri/ /index.html;
    }

    location /doc/ {
        alias /usr/share/doc/;
        autoindex on;
        allow 127.0.0.1;
        deny all;
    }

}

ネットワーク統計出力:

netstat -napl | grep 81
tcp        0      0 0.0.0.0:81              0.0.0.0:*               LISTEN      3432/nginx

ダウンロードファイル:

$ wget localhost:81

文書の内容:

$ cat index.html
<html>
<head>
<title>Welcome to nginx!</title>
</head>
<body bgcolor="white" text="black">
<center><h1>Welcome to nginx!</h1></center>
</body>
</html>

アップデート2

テストポート:

 root@gitlab:# nc -vz localhost 81
 Connection to localhost 81 port [tcp/*] succeeded!
 root@gitlab:# nc -vz localhost 443
 nc: connect to localhost port 443 (tcp) failed: Connection refused

答え2

知っていると大きな問題でしたか? Nginxはワーカー_プロセスを0に設定しました。 nginx.confの上に設定行を追加しましたが、autoすべてが正常です!

時間をお待ちいただきありがとうございます。

答え3

設定ファイル/etc/nginx/nginx.confにwebsocketを追加することでこの問題を解決しました。以下では、リバースプロキシの完全な設定ファイルを見ることができます。https://help.teradici.com/s/article/1050

魔法の部分は以下を追加しています:

upstream websocket {
    server <DESTINATION_IP>:<DEST_PORT>;
}

関連情報