我最近在 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 请求。
任何帮助都将受到赞赏。