changes done to sec parameter for freerdp

This commit is contained in:
felixg
2026-02-22 15:12:51 +01:00
parent 6e9719d331
commit 898162aedd

View File

@@ -174,14 +174,14 @@ export async function rdpWebsocket(fastify: FastifyInstance) {
dpi: '96',
'color-depth': '32',
'ignore-cert': 'true',
security: 'any',
security: 'nla', // FreeRDP 3.x dropped 'any'; NLA is what Windows 11 uses by default
'disable-auth': 'false',
'enable-drive': 'false',
'create-drive-path': 'false',
'enable-printing': 'false',
'disable-glyph-caching': 'true',
'disable-gfx': 'true', // disable GFX Pipeline Extension (known FreeRDP 2.x crash source)
'cert-tofu': 'true', // trust certificate on first use
'disable-glyph-caching': 'false',
// disable-gfx removed: FreeRDP 3.x handles GFX pipeline correctly; disabling it caused crashes
'cert-tofu': 'true',
'resize-method': 'display-update',
};