HTTPS要求接続タイムアウト(NGINX)[閉じる]

HTTPS要求接続タイムアウト(NGINX)[閉じる]

Stackoverflowやその他のフォーラムでさまざまな回答を読んで多くの努力をしましたが、エラーを特定できませんでした。誰かが以下の設定を確認し、何が間違っているのか教えてもらえますか?

server {
    server_name test.domain.com;
    listen 80;
    location / {
        proxy_pass http://176.X.XX.XXX:30805;
    }
}

server {
    server_name test.domain.com;
    listen 443 ssl;


    access_log /var/log/nginx/ssl_access_test main;
    error_log /var/log/nginx/ssl_error_test info;

    ssl_certificate /root/ssl/wildcard.domain.com.pem;
    ssl_certificate_key /root/ssl/wildcard.domain.com.pem;

    ssl_prefer_server_ciphers on;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AES;

    ssl_session_cache shared:SSL:10m;
    ssl_session_timeout 10m;

    location / {
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_redirect http:// https://;
        proxy_pass http://176.X.XX.XXX:30805;
    }
}

ページにアクセスできます。http://test.domain.comしかし、インストールできませんhttps://test.domain.com(接続タイムアウトの代わりに)ポート80から443にリダイレクトしようとしましたが、役に立ちませんでした。いろいろな構成の組み合わせを試してみたので

上記の設定では、出力は次のようになりますnginx -t

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

ベストアンサー1

設定が良いです。ポート443のルールをインストールして追加したfirewall-cmd後、問題が解決しました。

おすすめ記事