From f52e035d8af1eadfce8ada5049bc8f643f792ce2 Mon Sep 17 00:00:00 2001 From: Den Piligrim <89912505+vasiljevdenis@users.noreply.github.com> Date: Mon, 8 Jun 2026 22:47:25 +0300 Subject: [PATCH] fix: insecure hy2 --- server/src/inbounds/inbound-builder.service.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/src/inbounds/inbound-builder.service.ts b/server/src/inbounds/inbound-builder.service.ts index 5a80219..a6650c7 100644 --- a/server/src/inbounds/inbound-builder.service.ts +++ b/server/src/inbounds/inbound-builder.service.ts @@ -469,7 +469,6 @@ export class InboundBuilderService { content: '', dir: '', headers: {}, - insecure: true, rewriteHost: false, statusCode: 0, type: 'proxy', @@ -703,7 +702,6 @@ export class InboundBuilderService { const auth = settings.clients?.[0]?.auth || settings.clients?.[0]?.password || password; const finalmask = stream.finalmask?.udp?.[0]; const params = new URLSearchParams(); - params.set('insecure', '1'); params.set('security', 'tls'); params.set('fp', 'chrome'); params.set('alpn', 'h3'); @@ -769,7 +767,6 @@ export class InboundBuilderService { } const params = new URLSearchParams(); - params.set('insecure', '1'); params.set('security', 'tls'); params.set('fp', 'chrome'); params.set('alpn', 'h3');