mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2024-11-17 21:10:12 +01:00
Update README.md
This commit is contained in:
parent
5e6be1f830
commit
3f19b05d28
21
README.md
21
README.md
@ -21,8 +21,25 @@
|
|||||||
- Ubuntu 18.04.1 LTS, other OS might work, but haven't test yet.
|
- Ubuntu 18.04.1 LTS, other OS might work, but haven't test yet.
|
||||||
- ‼️ Make sure you have **Wireguard** installed.‼️ <a href="https://www.wireguard.com/install/">How to install?</a>
|
- ‼️ Make sure you have **Wireguard** installed.‼️ <a href="https://www.wireguard.com/install/">How to install?</a>
|
||||||
- Configuration files under **/etc/wireguard**
|
- Configuration files under **/etc/wireguard**
|
||||||
|
|
||||||
|
***Example `.conf` file***
|
||||||
|
```
|
||||||
|
[Interface]
|
||||||
|
Address = 192.168.0.1/24
|
||||||
|
SaveConfig = true
|
||||||
|
PostUp = iptables -A FORWARD -i wg0 -j ACCEPT; iptables -A FORWARD -o wg0 -j ACCEPT; iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
|
||||||
|
PostDown = iptables -D FORWARD -i wg0 -j ACCEPT; iptables -D FORWARD -o wg0 -j ACCEPT; iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE
|
||||||
|
ListenPort = 12345
|
||||||
|
PrivateKey = ABCDEFGHIJKLMNOPQRSTUVWXYZ1234
|
||||||
|
|
||||||
|
[Peer]
|
||||||
|
PublicKey = HABCDEFGHIJKLMNOPQRSTUVWXYZ123123123123
|
||||||
|
AllowedIPs = 192.168.0.2/32
|
||||||
|
Endpoint = 8.8.8.8:12345
|
||||||
|
|
||||||
|
...
|
||||||
|
```
|
||||||
- Python 3.7+ & Pip3
|
- Python 3.7+ & Pip3
|
||||||
- To install Python 3 and Pip 3, for example on Debian bases OS (i.e Ubuntu):
|
|
||||||
```
|
```
|
||||||
$ sudo apt-get install python3 python3-pip
|
$ sudo apt-get install python3 python3-pip
|
||||||
```
|
```
|
||||||
@ -45,7 +62,7 @@ $ python3 dashboard.py
|
|||||||
|
|
||||||
Access your server with port `10086` ! e.g (http://your_server_ip:10086)
|
Access your server with port `10086` ! e.g (http://your_server_ip:10086)
|
||||||
|
|
||||||
**3. Install with Production Mode (Optional)**
|
**3. Install with Production Mode (Optional), not tested yet. Proceed with caution.**
|
||||||
|
|
||||||
```
|
```
|
||||||
$ cd Wireguard-Dashboard/src
|
$ cd Wireguard-Dashboard/src
|
||||||
|
Loading…
Reference in New Issue
Block a user