nginx 沒有重新導向到 https

nginx 沒有重新導向到 https

我正在按照以下說明進行操作這一頁在 DigitalOcean Droplet 上設定 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;
}

相關內容