mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
479 B
17 lines
479 B
[Unit]
|
|
Description=The easiest way to run WireGuard VPN with Web-based Admin UI
|
|
[Service]
|
|
Environment=DEBUG=Server,Wireguard
|
|
# Your server IP/domain
|
|
Environment=WG_HOST=REPLACEME
|
|
# IP Range for Devices to use
|
|
Environment=WG_DEFAULT_ADDRESS=10.7.0.x
|
|
# Default DNS
|
|
Environment=WG_DEFAULT_DNS=9.9.9.9
|
|
# Admin Panel Password (Please use a strong and complicated one)
|
|
Environment=PASSWORD=REPLACEME
|
|
WorkingDirectory=/app
|
|
ExecStart=node server.js
|
|
|
|
[Install]
|
|
WantedBy=default.target
|
|
|