Apache Guacamole は HTTP では正常に動作しますが、HTTPS では動作しません

Apache Guacamole は HTTP では正常に動作しますが、HTTPS では動作しません

最近、Ubuntu 20.04 LTS に Apache Guacamole をインストールし、NGINX をプロキシ サーバーとして使用しています。 では問題なく動作しますがHTTP、 を使用するとHTTPS、アプリケーションは読み込まれますが、接続が非常に遅くなります (数秒間停止します)。 構成については、公式ドキュメントに記載されているとおりに実行し、すべてのサービスが同じサーバー上で実行されています。

編集: NGINX 設定:

server {
    listen 80;
    server_name  guac.example.com;
    return 301 https://$host$request_uri;
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}

server {
    listen 443 ssl;
    server_name  guac.example.com;
    ssl_certificate /etc/ssl/certs/guacamole.crt;
    ssl_certificate_key /etc/ssl/private/guacamole.key;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers HIGH:!aNULL:!MD5;
    location / {
        proxy_pass http://localhost:8080/guacamole/;
        proxy_buffering off;
        proxy_http_version 1.1;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $http_connection;
        proxy_cookie_path /guacamole/ /;
        access_log off;
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}

編集: 公式ドキュメントによると、アプリケーションはデフォルトで WebSocket を使用しますが、WebSocket プロトコルが利用できない場合は HTTP リクエストを使用します。

どのような助けでも大歓迎です。

関連情報