From 974081e553de7d80cf3db8db00f962929ee45dd8 Mon Sep 17 00:00:00 2001 From: Jamil Bou Kheir Date: Thu, 12 Nov 2020 17:43:15 -0600 Subject: [PATCH] Use localhost just to be sure --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c012b7ae..9ddc9984a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,7 @@ jobs: sudo systemctl is-active fireguard echo "Trying to load homepage..." - curl -i -vvv -k https://$(hostname):8800/ || true + curl -i -vvv -k https://localhost:8800/ || true echo "Checking logs again..." sudo journalctl -u fireguard.service -b @@ -104,7 +104,7 @@ jobs: openssl s_client -connect google.com:443 -servername google.com -showcerts -prexit -debug echo "Connecting to FireGuard with openssl" - openssl s_client -connect 127.0.0.1:8800 -servername $(hostname) -showcerts -prexit -debug + openssl s_client -connect localhost:8800 -servername $(hostname) -showcerts -prexit -debug publish: needs: build