wg-easy/README.md

99 lines
3.4 KiB
Markdown
Raw Normal View History

2021-05-23 18:25:14 +08:00
# WireGuard Easy
2021-05-23 22:54:48 +08:00
[![Build & Publish Docker Image to Docker Hub](https://github.com/WeeJeWel/wg-easy/actions/workflows/deploy.yml/badge.svg?branch=production)](https://github.com/WeeJeWel/wg-easy/actions/workflows/deploy.yml)
2021-05-23 23:08:36 +08:00
[![Lint](https://github.com/WeeJeWel/wg-easy/actions/workflows/lint.yml/badge.svg?branch=master)](https://github.com/WeeJeWel/wg-easy/actions/workflows/lint.yml)
2021-05-23 23:05:24 +08:00
[![Docker](https://img.shields.io/docker/v/weejewel/wg-easy/latest)](https://hub.docker.com/r/weejewel/wg-easy)
[![Docker](https://img.shields.io/docker/pulls/weejewel/wg-easy.svg)](https://hub.docker.com/r/weejewel/wg-easy)
[![Sponsor](https://img.shields.io/github/sponsors/weejewel)](https://github.com/sponsors/WeeJeWel)
2021-05-23 22:54:48 +08:00
You have found the easiest way to install & manage WireGuard on any Linux host!
2021-05-23 22:57:51 +08:00
<p align="center">
2021-11-23 05:37:07 +08:00
<img src="./assets/screenshot.png" width="802" />
2021-05-23 22:57:51 +08:00
</p>
2021-05-23 22:54:48 +08:00
## Features
2021-05-23 22:59:27 +08:00
* All-in-one: WireGuard + Web UI.
* Easy installation, simple to use.
* List, create, edit, delete, enable & disable clients.
2021-05-23 22:59:27 +08:00
* Show a client's QR code.
* Download a client's configuration file.
* Statistics for which clients are connected.
2021-11-23 05:37:07 +08:00
* Tx/Rx charts for each connected client.
2021-05-23 22:59:27 +08:00
* Gravatar support.
2021-05-23 22:54:48 +08:00
## Requirements
* A host with a kernel that supports WireGuard (all modern kernels).
2021-07-18 23:04:20 +08:00
* A host with Docker installed.
2021-05-23 21:55:50 +08:00
## Installation
### 1. Install Docker
2021-05-23 22:24:25 +08:00
If you haven't installed Docker yet, install it by running:
```bash
$ curl -sSL https://get.docker.com | sh
$ sudo usermod -aG docker $(whoami)
2021-09-29 18:56:09 +08:00
$ exit
2021-05-23 22:24:25 +08:00
```
2021-09-29 18:56:09 +08:00
And log in again.
2021-11-23 05:37:07 +08:00
### 2. Run WireGuard Easy
2021-07-19 17:26:42 +08:00
2021-11-23 05:39:53 +08:00
To automatically install & run wg-easy, simply run:
2021-05-23 18:25:14 +08:00
2021-11-23 05:37:07 +08:00
<pre>
2021-11-23 05:39:53 +08:00
$ docker run -d \
2021-11-23 05:37:07 +08:00
--name=wg-easy \
2021-11-23 05:47:58 +08:00
-e WG_HOST=<b>🚨YOUR_SERVER_IP</b> \
-e PASSWORD=<b>🚨YOUR_ADMIN_PASSWORD</b> \
2021-11-23 05:37:07 +08:00
-v ~/.wg-easy:/etc/wireguard \
-p 51820:51820/udp \
-p 51821:51821/tcp \
2021-11-23 05:47:58 +08:00
--cap-add=NET_ADMIN \
--cap-add=SYS_MODULE \
2021-11-23 05:37:07 +08:00
--sysctl="net.ipv4.conf.all.src_valid_mark=1" \
--sysctl="net.ipv4.ip_forward=1" \
--restart unless-stopped \
weejewel/wg-easy
</pre>
2021-05-23 21:55:50 +08:00
2021-11-23 05:39:53 +08:00
> 💡 Replace `YOUR_SERVER_IP` with your WAN IP, or a Dynamic DNS hostname.
2021-11-23 05:37:07 +08:00
>
2021-11-23 05:39:53 +08:00
> 💡 Replace `YOUR_ADMIN_PASSWORD` with a password to log in on the Web UI.
2021-05-23 21:55:50 +08:00
2021-11-23 05:37:07 +08:00
The Web UI will now be available on `http://0.0.0.0:51821`.
2021-05-25 21:59:18 +08:00
2021-11-23 05:39:53 +08:00
> 💡 Your configuration files will be saved in `~/.wg-easy`
2021-05-23 18:25:14 +08:00
## Options
2021-11-23 05:37:07 +08:00
These options can be configured by setting environment variables using `-e KEY="VALUE"` in the `docker run` command.
2021-05-23 18:25:14 +08:00
| Env | Default | Example | Description |
| - | - | - | - |
2021-05-23 21:55:50 +08:00
| `PASSWORD` | - | `foobar123` | When set, requires a password when logging in to the Web UI. |
2021-10-22 19:35:02 +08:00
| `WG_HOST` | - | `vpn.myserver.com` | The public hostname of your VPN server. |
| `WG_PORT` | `51820` | `12345` | The public UDP port of your VPN server. WireGuard will always listen on `51820` inside the Docker container. |
| `WG_PERSISTENT_KEEPALIVE` | `0` | `25` | Value in seconds to keep the "connection" open. |
| `WG_DEFAULT_ADDRESS` | `10.8.0.x` | `10.6.0.x` | Clients IP address range. |
| `WG_DEFAULT_DNS` | `1.1.1.1` | `8.8.8.8, 8.8.4.4` | DNS server clients will use. |
| `WG_ALLOWED_IPS` | `0.0.0.0/0, ::/0` | `192.168.15.0/24, 10.0.1.0/24` | Allowed IPs clients will use. |
2021-05-23 18:25:14 +08:00
2021-05-23 22:57:51 +08:00
> If you change `WG_PORT`, make sure to also change the exposed port.
2021-07-14 03:39:45 +08:00
# Updating
2021-11-23 05:39:53 +08:00
To update to the latest version, simply run:
2021-07-14 03:39:45 +08:00
```bash
2021-11-23 05:37:07 +08:00
docker stop wg-easy
docker rm wg-easy
2021-11-23 05:54:42 +08:00
docker pull weejewel/wg-easy
2021-07-15 19:01:08 +08:00
```
2021-11-23 05:37:07 +08:00
2021-11-23 05:40:35 +08:00
And then run the `docker run -d \ ...` command above again.