From e7532d7189bb14b0d0efa9250e267c119a1ee009 Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Fri, 13 Feb 2026 18:29:49 -0300 Subject: [PATCH] feat(proxy): enable SOCKS5 proxy support by default SOCKS5 was already fully implemented in both backend (proxyDispatcher.js) and frontend (ProxyConfigModal.js). Enable the feature flags to show SOCKS5 option in the UI. --- .env.example | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index d304f99136..52117815b5 100644 --- a/.env.example +++ b/.env.example @@ -37,9 +37,9 @@ NEXT_PUBLIC_CLOUD_URL=https://omniroute.com # Optional outbound proxy variables for upstream provider calls # Lowercase variants are also supported: http_proxy, https_proxy, all_proxy, no_proxy -# Enable socks5 support only when rollout is approved -# ENABLE_SOCKS5_PROXY=false -# NEXT_PUBLIC_ENABLE_SOCKS5_PROXY=false +# SOCKS5 proxy support +ENABLE_SOCKS5_PROXY=true +NEXT_PUBLIC_ENABLE_SOCKS5_PROXY=true # HTTP_PROXY=http://127.0.0.1:7890 # HTTPS_PROXY=http://127.0.0.1:7890 # ALL_PROXY=socks5://127.0.0.1:7890