12 lines
299 B
Django/Jinja
12 lines
299 B
Django/Jinja
# Stripped version of the wg config
|
|
|
|
[Interface]
|
|
PrivateKey = {{ wg_privkey }}
|
|
# Address = {{ wg_address }}
|
|
# DNS = {{ wg_dns }} # This is also used as the gateway address for NAT-PMP to work properly
|
|
|
|
[Peer]
|
|
PublicKey = {{ wg_peer_pubkey }}
|
|
AllowedIPs = 0.0.0.0/0
|
|
Endpoint = {{ wg_peer_endpoint }}
|