mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 18:06:36 +02:00
.. | ||
docker-compose.yml | ||
README.md |
wireguard-ui
wireguard-ui is a web user interface to manage your WireGuard setup.
up and running
$ apt update
$ apt install wireguard
$ docker-compose up -d
$ curl http://127.0.0.1:5000
$ systemctl enable --now wgui.path
systemd integration
# /etc/systemd/system/wgui.service
[Unit]
Description=Restart wireguard service
After=network.target
[Service]
Type=oneshot
ExecStart=/bin/systemctl restart wg-quick@wg0
# /etc/systemd/system/wgui.path
[Unit]
Description=Watch wireguard config
[Path]
PathModified=/etc/wireguard/wg0.conf
[Install]
WantedBy=multi-user.target