fix: enable VNC TLS/VeNCrypt support with security mode negotiation

This commit is contained in:
ZacharyZcR
2026-05-13 17:34:30 +08:00
parent ec87f8a4d1
commit c481a5c702
2 changed files with 2 additions and 0 deletions
@@ -75,6 +75,7 @@ const clientOptions = {
vnc: { vnc: {
"swap-red-blue": false, "swap-red-blue": false,
cursor: "remote", cursor: "remote",
security: "any",
width: 1280, width: 1280,
height: 720, height: 720,
}, },
+1
View File
@@ -216,6 +216,7 @@ router.post(
password, password,
{ {
port: port || 5900, port: port || 5900,
security: "any",
...guacConfig, ...guacConfig,
}, },
); );