From 7cfecb287d349bde0cbe44ae8fb62bdcd2116e10 Mon Sep 17 00:00:00 2001 From: Jamil Bou Kheir Date: Wed, 11 Nov 2020 11:22:33 -0600 Subject: [PATCH] add openssl debugging info --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a18c4eb7b..676670021 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,8 @@ jobs: DEBIAN_FRONTEND: noninteractive run: | sudo apt-get update - sudo apt-get install -y postgresql wireguard iptables net-tools curl + sudo apt-get install -y postgresql \ + wireguard iptables net-tools curl ca-certificates sudo systemctl start postgresql sudo dpkg -i fireguard*.deb @@ -87,8 +88,11 @@ jobs: echo "Checking if FireGuard service is active" sudo systemctl is-active fireguard + echo "Connecting with openssl" + openssl s_client -connect localhost:8800 -showcerts -prexit -debug + echo "Trying to load homepage..." - curl -k https://localhost:8800 + curl -i -vvv -k https://localhost:8800 publish: needs: build