Enable WireGuard service, change HTTPFetchClient to use wireguard proxy, and add required env vars
All checks were successful
Build And Deploy / build-and-deploy (push) Successful in 1m22s

Add WireGuard-related env variables to .env.example (addresses,
keys, endpoint, DNS)
Resolve WIREGUARD_ENDPOINT_HOST to WIREGUARD_ENDPOINT_IP in
cicd/scripts/deploy.sh and write it to .env, failing if unresolved
Un-comment and enable the wireguard service in docker-compose.yml
Remove an obsolete commented workflow snippet
This commit is contained in:
badblocks 2026-02-05 10:27:26 -08:00
parent 3b64839cbd
commit 1fbcbf772a
No known key found for this signature in database
10 changed files with 106 additions and 57 deletions

View file

@ -16,3 +16,16 @@ SSH_PORT=${SSH_PORT}
SSH_HOST=${SSH_HOST}
SSH_KEY="${SSH_KEY}"
SSH_KNOWN_HOST="${SSH_KNOWN_HOST}"
WIREGUARD_ALLOWED_IPS=${WIREGUARD_ALLOWED_IPS}
DNS_SERVER=${DNS_SERVER}
DNS_ADDRESS=${DNS_ADDRESS}
WIREGUARD_PRIVATE_KEY=${WIREGUARD_PRIVATE_KEY}
WIREGUARD_ADDRESSES=${WIREGUARD_ADDRESSES}
WIREGUARD_PUBLIC_KEY=${WIREGUARD_PUBLIC_KEY}
WIREGUARD_ENDPOINT_HOST=${WIREGUARD_ENDPOINT_HOST}
WIREGUARD_ENDPOINT_PORT=${WIREGUARD_ENDPOINT_PORT}
WIREGUARD_ENDPOINT_IP=${WIREGUARD_ENDPOINT_IP}
HEALTH_TARGET_ADDRESSES=${HEALTH_TARGET_ADDRESSES}
HEALTH_ICMP_TARGET_IPS=${HEALTH_ICMP_TARGET_IPS}
VERSION_INFORMATION=${VERSION_INFORMATION}
PUBLICIP_ENABLED=${PUBLICIP_ENABLED}