22 lines
693 B
YAML
22 lines
693 B
YAML
---
|
||
# IP address assigned to the wireguard peer
|
||
system_wg_admin_address: "192.168.0.2/32"
|
||
|
||
# Domain that is used with local DNS on the VPN
|
||
system_wg_admin_domain: "localdomain"
|
||
|
||
# IP address of the gateway on the VPN
|
||
system_wg_admin_gateway: "192.168.0.1"
|
||
|
||
# Interface name for the wireguard connection
|
||
system_wg_admin_ifname: "wg-something"
|
||
|
||
# Peers of the VPN, list of objects with the following format:
|
||
#
|
||
# - note: ‹comment that gets put above the peer›
|
||
# public_key: ‹public key of the peer›
|
||
# allowed_ips: 192.168.0.0/24
|
||
# endpoint: localhost:51820
|
||
# # if bool(keepalive) → gets included in the config
|
||
# keepalive: 20
|
||
system_wg_admin_peers: []
|