我最近在 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;
}
}
編輯:根據官方文檔,應用程式預設使用WebSockets,但如果WebSocket協定不可用,它將使用HTTP請求。
任何幫助表示讚賞。