-2

SSL でサイトを開こうとすると、エラー ERR_CONNECTION_RESET が表示されます。

ログに情報がありません。

ポート 443 はファイアウォールで開いています。http では、すべて正常に動作します。

CentOS7 (Linux domain.com 3.10.0-123.9.3.el7.x86_64 #1 SMP Thu Nov 6 15:06:03 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux)

nginx バージョン: nginx/1.6.2

OpenSSL 1.0.1e-fips 2013 年 2 月 11 日

これが私のnginx構成ファイルです:

server {
  listen 80;
  listen 443 ssl;

  server_name domain.com www.domain.com;

  #SSL config
  ssl on;
  ssl_certificate /etc/nginx/ssl/domain.crt;
  ssl_certificate_key /etc/nginx/ssl/domain.key;
  ssl_session_cache shared:SSL:10m;
  ssl_session_timeout 10m;
  ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  ssl_ciphers "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH EDH+aRSA !RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS";
  ssl_prefer_server_ciphers on;
  ssl_stapling on;
  resolver 8.8.8.8;
  ssl_stapling_verify on;

  root /home/main/www;
  access_log /var/log/nginx/domain.com-access.log main buffer=16k;
  error_log  /var/log/nginx/domain.com-dev-error.log warn;

  location = /favicon.ico {
        log_not_found off;
        access_log off;
  }

  location = /robots.txt  { access_log off; log_not_found off; }
  location ~ /\.          { access_log off; log_not_found off; deny all; }
  location ~ ~$           { access_log off; log_not_found off; deny all; }

  location ~* .(js|css|png|jpg|jpeg|gif|ico|xml|swf|flv|eot|ttf|woff|pdf|xls|htc|html|unity3d)$ {
  add_header Pragma "public";
  add_header Cache-Control "public, must-revalidate, proxy-revalidate";
     access_log off;
        log_not_found off;
      expires   360d;
  }

  location ~ /.ht {
        deny all;
        access_log off;
         log_not_found off;
 }

  location ~* \.php$ {
        #rewrite ^/(.*)/$ /$1 permanent;
        fastcgi_split_path_info ^(.+.php)(.*)$;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param SCRIPT_NAME $fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        fastcgi_index  index.php;
        fastcgi_pass   unix:/var/run/php5-fpm.sock;
        include        /etc/nginx/fastcgi_params;
  }

  location / {
    index index.php;
    try_files $uri /index.php?$args;
  }
}

Telnet の結果:

[user@localhost ~]$ telnet domain.com 80
Trying 123.45.67.89...
Connected to domain.com.
Escape character is '^]'.
^]
HTTP/1.1 400 Bad Request
Server: nginx/1.6.2
Date: Thu, 18 Dec 2014 13:13:20 GMT
Content-Type: text/html
Content-Length: 172
Connection: close

<html>
<head><title>400 Bad Request</title></head>
<body bgcolor="white">
<center><h1>400 Bad Request</h1></center>
<hr><center>nginx/1.6.2</center>
</body>
</html>
Connection closed by foreign host.
[user@localhost ~]$ telnet domain.com 443
Trying 123.45.67.89...
Connected to domain.com.
Escape character is '^]'.
Connection closed by foreign host.

問題は解決しました。グローバル設定ファイルの行で見つけました:

server { listen 443 ssl; server_name _; access_log off; error_log off; return 444; }

それを削除した後、すべて正常に動作します。

4

3 に答える 3

1

問題は解決しました。グローバル設定ファイルの行で見つけました:

server { listen 443 ssl; server_name _; access_log off; error_log off; return 444; }

それを削除した後、すべて正常に動作します。

– グリー・ボリス

于 2017-02-22T12:03:06.200 に答える
-1

「Listen 443 ssl」は冗長に見えます。「Listen 443」を配置する必要があります(後で構成で「ssl on」を維持します)

于 2014-12-18T12:48:33.163 に答える