From 41baae0ab8b90bae4332dc9996262d11ac85ceca Mon Sep 17 00:00:00 2001 From: fenix-gitea-admin Date: Sun, 24 Aug 2025 16:32:18 +0000 Subject: [PATCH 1/2] Update .gitea/workflows/ci-test.yaml --- .gitea/workflows/ci-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-test.yaml b/.gitea/workflows/ci-test.yaml index 311ab8d..03c5f87 100644 --- a/.gitea/workflows/ci-test.yaml +++ b/.gitea/workflows/ci-test.yaml @@ -56,7 +56,7 @@ jobs: # O binário 'cloudflared' tem variações de flags entre versões; estes flags funcionam nas versões recentes. nohup cloudflared access tcp \ --hostname "$HOSTNAME" \ - --listener "socks://$SOCKS_LISTENER" \ + --listener "socks5://$SOCKS_LISTENER" \ --service-token-id "$CF_SVC_ID" \ --service-token-secret "$CF_SVC_SECRET" \ > cloudflared.log 2>&1 & From 1768c89c72e8771e632e2ac2a4de3a5c71d0f4d1 Mon Sep 17 00:00:00 2001 From: fenix-gitea-admin Date: Sun, 24 Aug 2025 16:33:35 +0000 Subject: [PATCH 2/2] Update .gitea/workflows/ci-test.yaml --- .gitea/workflows/ci-test.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/ci-test.yaml b/.gitea/workflows/ci-test.yaml index 03c5f87..9fa30c1 100644 --- a/.gitea/workflows/ci-test.yaml +++ b/.gitea/workflows/ci-test.yaml @@ -50,13 +50,12 @@ jobs: CF_SVC_ID: ${{ secrets.CF_SVC_ID }} CF_SVC_SECRET: ${{ secrets.CF_SVC_SECRET }} HOSTNAME: "proxmox-ssh.fenix-dev.com" - SOCKS_LISTENER: ${{ env.SOCKS_LISTENER }} run: | # Inicia cloudflared access tcp/ssh com service token e listener socks local # O binário 'cloudflared' tem variações de flags entre versões; estes flags funcionam nas versões recentes. nohup cloudflared access tcp \ --hostname "$HOSTNAME" \ - --listener "socks5://$SOCKS_LISTENER" \ + --listener "socks5://127.0.0.1:1080" \ --service-token-id "$CF_SVC_ID" \ --service-token-secret "$CF_SVC_SECRET" \ > cloudflared.log 2>&1 &