# Environment for the optional VPN egress in compose.vpn_example.yml. # Copy to .env (and keep .env out of git: `echo ".env" >> .gitignore`). # # Leave everything commented for a normal direct SkunkyArt (no VPN). # Fill in and uncomment the VPN section to route SkunkyArt's outbound through # a VPN exit (needed if DeviantArt's CloudFront/WAF blocks your egress IP). # --- VPN toggle --------------------------------------------------------------- # Uncomment BOTH to enable the VPN sidecar and point SkunkyArt at its proxy. # COMPOSE_PROFILES starts the gluetun service; SKUNKY_PROXY routes DA traffic. #COMPOSE_PROFILES=vpn #SKUNKY_PROXY=http://gluetun:8888 # --- VPN provider ------------------------------------------------------------- # Your choice of provider. gluetun supports AirVPN, Mullvad, ProtonVPN, PIA, etc. # Exact provider name + required variables: https://github.com/qdm12/gluetun-wiki VPN_SERVICE_PROVIDER=airvpn VPN_TYPE=wireguard # --- WireGuard credentials ---------------------------------------------------- # From your provider's WireGuard config generator. VPN_PRIVATE_KEY=<[Interface] PrivateKey> VPN_PRESHARED_KEY=<[Peer] PresharedKey> # optional; leave empty if unused VPN_ADDRESSES=<[Interface] Address, e.g. 10.128.x.x/32> # Preferred exit location(s), comma-separated (optional). VPN_COUNTRIES=Netherlands # --- Misc --------------------------------------------------------------------- TZ=America/Chicago