1

サイトでSSLを必要とするクライアントがいるので、証明書を取得し、それを使用してnginx conf(以下は構成)をセットアップしました。HTTPS 部分のルートを実際のサーバー ルートにポイントしないと機能しますが、ルートをサイト ファイルに設定すると、HTTPS が HTTP にリダイレクトされます。エラー メッセージはありません。

何か案は?

user  www-data;
worker_processes  4;

error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}

http {
    passenger_root /usr/local/rvm/gems/ruby-1.9.3-p448/gems/passenger-4.0.14;
    passenger_ruby /usr/local/rvm/wrappers/ruby-1.9.3-p448/ruby;

    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  www.nope.se;

    passenger_enabled on; 
    root /var/www/current/public/;

        #charset koi8-r;

        #access_log  logs/host.access.log main;

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        #error_page   500 502 503 504  /50x.html;
        #location = /50x.html {
        #    root   html;
        #}

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    server {
        listen       443;
        server_name  www.nope.se;

        ssl                  on;
        ssl_certificate      /opt/nginx/cert/www.nope.se.crt;
        ssl_certificate_key  /opt/nginx/cert/www.nope.se.key;

        ssl_session_timeout  10m;

        #ssl_protocols  SSLv2 SSLv3 TLSv1;
        #ssl_ciphers  HIGH:!aNULL:!MD5;
        #ssl_prefer_server_ciphers   on;

    passenger_enabled on;
        root /var/www/current/public/;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    }

}
4

1 に答える 1

2

正直なところ、あなたの質問がわかりません。しかし、典型的な nginx-https 設定がどのように行われるかについてのいくつかのギャンがあります. お役に立てば幸いです。

SSL は、HTTP の 1 層下で機能するプロトコルです。HTTP プロトコルが通過するトンネルと考えてください。したがって、SSL 証明書は、指定した場所に関係なく、HTTP 関連の構成の前にロードされます。これは、nginx インスタンスごとに 1 つの SSL 設定のみが必要な理由でもあります。

SSL 証明書関連のロジックを、serverこのように別のブロックに移動することをお勧めします。

server {
   listen                    443 ssl default_server;
   ssl_certificate           ssl/website.pem;
   ssl_certificate_key       ssl/website.key;
   ssl_trusted_certificate   ssl/ca.all.pem;
   ssl_session_cache         builtin:1000     shared:SSL:10m;  
   ssl_session_timeout       5m;


   ssl_protocols             SSLv3 TLSv1 TLSv1.1 TLSv1.2; # default on newer versions
   ssl_prefer_server_ciphers on;

   # The following is all one long line. We use an explicit list of ciphers to enable
   # forward secrecy without exposing ciphers vulnerable to the BEAST attack

   ssl_ciphers  ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-RC4-SHA:ECDHE-RSA-AES128-SHA:RC4-SHA:RC4-MD5:ECDHE-RSA-AES256-SHA:AES256-SHA:ECDHE-RSA-DES-CBC3-SHA:DES-CBC3-SHA:AES128-SHA;

   # The following is for reference. It needs to be specified again
   # in each virtualhost, in both HTTP and non-HTTP versions.
   # All this directive does it to tell the browser to use HTTPS version of the site and remember this for a month
  add_header                Strict-Transport-Security    max-age=2592000;
}

以下に示すように、https 以外のサーバー ブロックに 301 リダイレクトを設定することもお勧めします。

これを変える:

 server {
    listen       80;
    server_name  www.nope.se;  
    ... 
 }

このようなものに:

server {
    listen       80;
    server_name  www.nope.se;
    add_header   Strict-Transport-Security  max-age=7200;
    return       301                        https://$host$request_uri;
 }

これにより、ユーザーがアクセスhttp://www.nope.seすると、自動的にリダイレクトされますhttps://www.nope.se

于 2013-10-08T17:53:28.493 に答える