30 lines
864 B
Markdown
30 lines
864 B
Markdown
# WireGuard UI - Configuration Settings
|
|
|
|
This repository contains the necessary `docker-compose` configuration for setting up **WireGuard UI**.
|
|
|
|
## Settings Panel
|
|
|
|
To configure the settings in the WireGuard UI panel, refer to the images below:
|
|
|
|

|
|
|
|

|
|
|
|
🔹 **Don't forget to save** your changes using the **Save** button in the **top right corner** of the panel!
|
|
|
|
---
|
|
|
|
|
|
###
|
|
postup
|
|
iptables -A FORWARD -i wg0 -j ACCEPT; iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
|
|
|
|
postdown
|
|
iptables -D FORWARD -i wg0 -j ACCEPT; iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE
|
|
|
|
## Using Docker Compose
|
|
|
|
Make sure to use the provided `docker-compose.yml` to deploy the UI easily.
|
|
|
|
|