nginx が https にリダイレクトされない

nginx が https にリダイレクトされない

私は以下の指示に従っていますこのページDigitalOcean ドロップレット上に R Shiny サーバーをセットアップします。

私が欲しいもの:

  1. shiny.domain.com で稼働している Shiny サーバー
  2. shiny.domain.comから自動リダイレクトhttps://shiny.domain.com
  3. 自動リダイレクトhttp://shiny.domain.comhttps://shiny.domain.com

現時点では 1 と 2 は機能しますが、3 は機能しません。最初に https にアクセスすると、http は https にリダイレクトされますが、最初に http を使用すると (たとえば、シークレット ウィンドウ内)、代わりに Nginx のウェルカム ページが表示されます。

私の Nginx 設定は次のとおりです (Shiny サーバーは 3838 をリッスンするため、リバース プロキシが設定され、トラフィックが自動的にリダイレクトされるため、上記のリンクで説明されているように、毎回 :3838 と入力する必要はありません)

server {
listen 80;
listen [::]:80;

# redirect all HTTP requests to HTTPS with a 301 Moved Permanently response.
return 301 https://$host$request_uri;
}

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;

    ssl_certificate <path to certificate>;
    ssl_certificate_key <path to key>;
    ssl_session_timeout 1d;
    ssl_session_cache shared:MozSSL:10m;  # about 40000 sessions
    ssl_session_tickets off;

    ssl_dhparam /etc/nginx/snippets/dhparam.pem;

    ssl_protocols TLSv1.2 TLSv1.3;
    ssl_ciphers xxxxxx
    ssl_prefer_server_ciphers off;

    # HSTS (ngx_http_headers_module is required) (63072000 seconds)
    add_header Strict-Transport-Security "max-age=63072000" always;

    # OCSP stapling
    ssl_stapling on;

    ssl_stapling_verify on;

    ssl_trusted_certificate <path to chain.pem>

    server_name shiny.domain.com;  

    location / {
        proxy_pass http://localhost:3838;
        proxy_redirect http://localhost:3838/ $scheme://$host/;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $connection_upgrade;
        proxy_read_timeout 20d;
        proxy_buffering off;
        }
    }

私はnginxの初心者なので、この点について助けていただければ幸いです。

答え1

serverブロックhttpがありませんserver_name。つまり、nginx はdefault_serverこれらのリクエストに を使用し、ウェルカム ページを表示します。

最初のブロックを次のブロックに置き換えます。

server {
    listen 80;
    listen [::]:80;

    server_name shiny.example.com;

    return 301 https://shiny.example.com;
}

関連情報