최근 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 요청을 사용합니다.
도움을 주시면 감사하겠습니다.