0

我正在 docker-compose 中使用 Shinyproxy 部署 10 个闪亮的应用程序。我已经在我的服务器上设置了 Nginx 反向代理以获取信息。这些应用程序在 Google Chrome 上加载得非常好,但在使用 Safari 时却不行。我检查了元素并看到了两种不同类型的错误:

  • 加载资源失败:服务器响应状态为 503 ()
  • 拒绝将 'url' 作为脚本执行,因为给出了“X-Content-Type: nosniff”,并且它的 Content-Type 不是脚本 MIME 类型。

谁能向我解释为什么这些错误发生在 Safari 而不是 Google Chrome 上?有什么我可以做的吗?

这 10 个应用程序可在https://www.derivativesacademy.com/derivatives-pricer/

您可以使用 Safari 浏览器单击其中任何一个以查看我的意思并检查元素。

根据我的研究,第二个错误与 Nginx 配置有关。我在 conf 文件中尝试了很多东西,希望它会变得更好,但到目前为止没有成功。

有关信息,我创建了一个新的 conf 文件,插入到 nginx.conf 中,以确保我没有对初始配置文件做任何愚蠢的事情。我与您分享创建的 conf 文件的内容:

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

    server_name XXX;

    # certs sent to the client in SERVER HELLO are concatenated in ssl_certificate
    ssl_certificate /etc/letsencrypt/live/XXX/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/XXX/privkey.pem;
    ssl_session_timeout 1d;
    ssl_session_cache shared:MozSSL:10m;  # about 40000 sessions
    ssl_session_tickets off;

    # curl https://ssl-config.mozilla.org/ffdhe2048.txt > /path/to/dhparam.pem
    ssl_dhparam /etc/nginx/snippets/dhparam.pem;

    # intermediate configuration
    ssl_protocols TLSv1.2 TLSv1.3;
    ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
    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;

    # verify chain of trust of OCSP response using Root CA and Intermediate certs
    ssl_trusted_certificate /etc/letsencrypt/live/XXX/chain.pem;

    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;
    }
}    

要提供更多信息,请在 Safari 上检查元素时查看屏幕截图。这些元素在 Chrome 中都不是红色的。

在此处输入图像描述 在此处输入图像描述 在此处输入图像描述

任何帮助表示赞赏,

马克西姆

4

1 回答 1

1

我更新到最新版本的 Shinyproxy (2.4.2),它解决了这个问题!

不敢相信我花了这么多时间来解决这样的解决方案,但如果它可以为使用旧版本 Shinyproxy 的任何人腾出一些时间(我在 2.3.0 上获取信息)。

于 2020-12-23T14:44:07.297 回答