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

您的serverhttp缺少server_name。这意味着 nginx 将对这些请求使用default_server,这将显示欢迎页面。

用以下代码替换第一个块:

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

    server_name shiny.example.com;

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

相关内容