From 041c09f7ba7600a70af0097c22f65ff1d70a4ef9 Mon Sep 17 00:00:00 2001 From: Gianpierre Mio <88248836+DarkCodex29@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:06:15 -0500 Subject: [PATCH] temp: find impulsa web location on host --- .github/workflows/find-impulsa-web.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/find-impulsa-web.yml diff --git a/.github/workflows/find-impulsa-web.yml b/.github/workflows/find-impulsa-web.yml new file mode 100644 index 0000000..32ce917 --- /dev/null +++ b/.github/workflows/find-impulsa-web.yml @@ -0,0 +1,17 @@ +name: Find Impulsa Web + +on: + workflow_dispatch: + +jobs: + find: + runs-on: self-hosted + steps: + - name: Find HTML files + run: | + echo "=== Searching for impulsa HTML ===" + find /home/deployer /opt /var/www /srv -name "*.html" 2>/dev/null | head -20 + echo "=== Docker containers ===" + docker ps --format "{{.Names}} {{.Image}} {{.Ports}}" | grep -i "impulsa\|web\|nginx\|static" + echo "=== Traefik config for impulsa.darkcodex.dev ===" + docker run --rm -v /etc/easypanel/traefik/config:/cfg alpine sh -c 'grep -A 5 "impulsa.darkcodex.dev" /cfg/main.yaml 2>/dev/null | head -30'