- Implement Claude API smart router with automatic failover - Support 4 providers: Claude Pro, DeepSeek, Kimi, Claude API - Update models: DeepSeek to deepseek-reasoner, Kimi to kimi-k2 - Add AdWireGuard: WireGuard VPN + AdGuard DNS filtering - Consolidate tokens into single tokens.txt file - Add mDNS reflector to Home Assistant setup 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
321 B
Plaintext
12 lines
321 B
Plaintext
[Interface]
|
|
Address = ${CLIENT_IP}
|
|
PrivateKey = $(cat /config/${PEER_ID}/privatekey-${PEER_ID})
|
|
ListenPort = 51820
|
|
DNS = ${PEERDNS}
|
|
|
|
[Peer]
|
|
PublicKey = $(cat /config/server/publickey-server)
|
|
PresharedKey = $(cat /config/${PEER_ID}/presharedkey-${PEER_ID})
|
|
Endpoint = ${SERVERURL}:${SERVERPORT}
|
|
AllowedIPs = ${ALLOWEDIPS}
|