import
This commit is contained in:
29
README.md
Normal file
29
README.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# 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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user