krz/skunky-art
Alternative privacy frontend for DeviantArt.
clone: git clone https://gitbay.org/krz/skunky-art.git
v1.3.5: .env.example · raw
1# Environment for the optional VPN egress in compose.vpn_example.yml.
2# Copy to .env (and keep .env out of git: `echo ".env" >> .gitignore`).
3#
4# Leave everything commented for a normal direct SkunkyArt (no VPN).
5# Fill in and uncomment the VPN section to route SkunkyArt's outbound through
6# a VPN exit (needed if DeviantArt's CloudFront/WAF blocks your egress IP).
7
8# --- VPN toggle ---------------------------------------------------------------
9# Uncomment BOTH to enable the VPN sidecar and point SkunkyArt at its proxy.
10# COMPOSE_PROFILES starts the gluetun service; SKUNKY_PROXY routes DA traffic.
11#COMPOSE_PROFILES=vpn
12#SKUNKY_PROXY=http://gluetun:8888
13
14# --- VPN provider -------------------------------------------------------------
15# Your choice of provider. gluetun supports AirVPN, Mullvad, ProtonVPN, PIA, etc.
16# Exact provider name + required variables: https://github.com/qdm12/gluetun-wiki
17VPN_SERVICE_PROVIDER=airvpn
18VPN_TYPE=wireguard
19
20# --- WireGuard credentials ----------------------------------------------------
21# From your provider's WireGuard config generator.
22VPN_PRIVATE_KEY=<[Interface] PrivateKey>
23VPN_PRESHARED_KEY=<[Peer] PresharedKey> # optional; leave empty if unused
24VPN_ADDRESSES=<[Interface] Address, e.g. 10.128.x.x/32>
25
26# Preferred exit location(s), comma-separated (optional).
27VPN_COUNTRIES=Netherlands
28
29# --- Misc ---------------------------------------------------------------------
30TZ=America/Chicago