Emile Nijssen
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with
21 additions and
4 deletions
-
.github/workflows/deploy.yml
-
LICENSE.md
-
README.md
-
docker-compose.dev.yml
-
src/config.js
-
src/lib/WireGuard.js
|
|
@ -19,8 +19,8 @@ jobs: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v2 |
|
|
|
|
|
|
|
- uses: benjlevesque/[email protected] |
|
|
|
with: |
|
|
|
ref: production |
|
|
|
|
|
|
|
- name: Set up QEMU |
|
|
|
uses: docker/setup-qemu-action@v1 |
|
|
|
|
|
@ -0,0 +1,11 @@ |
|
|
|
**You may:** |
|
|
|
|
|
|
|
* Use this software for yourself; |
|
|
|
* Use this software for a company; |
|
|
|
* Modify this software, as long as you: |
|
|
|
* Publish the changes on GitHub as an open-source & linked fork; |
|
|
|
* Don't remove any links to the original project or donation pages; |
|
|
|
|
|
|
|
**You may not:** |
|
|
|
|
|
|
|
* Use this software in a commercial product without a license from the original author; |
|
|
@ -75,6 +75,7 @@ These options can be configured in `docker-compose.yml` under `environment`. |
|
|
|
| `PASSWORD` | - | `foobar123` | When set, requires a password when logging in to the Web UI. | |
|
|
|
| `WG_HOST` | - | `vpn.myserver.com` | The public hostname of your VPN server | |
|
|
|
| `WG_PORT` | `51820` | `51820` | The public UDP port of your VPN server | |
|
|
|
| `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 | |
|
|
@ -90,4 +91,4 @@ docker-compose down |
|
|
|
docker-compose pull |
|
|
|
docker-compose up --detach --remove-orphans |
|
|
|
docker image prune |
|
|
|
``` |
|
|
|
``` |
|
|
|
|
|
@ -4,4 +4,6 @@ services: |
|
|
|
image: wg-easy |
|
|
|
command: npm run serve |
|
|
|
volumes: |
|
|
|
- ./src/:/app/ |
|
|
|
- ./src/:/app/ |
|
|
|
environment: |
|
|
|
- PASSWORD=p |
|
|
@ -8,6 +8,7 @@ module.exports.PASSWORD = process.env.PASSWORD; |
|
|
|
module.exports.WG_PATH = process.env.WG_PATH || '/etc/wireguard/'; |
|
|
|
module.exports.WG_HOST = process.env.WG_HOST; |
|
|
|
module.exports.WG_PORT = process.env.WG_PORT || 51820; |
|
|
|
module.exports.WG_PERSISTENT_KEEPALIVE = process.env.WG_PERSISTENT_KEEPALIVE || 0; |
|
|
|
module.exports.WG_DEFAULT_ADDRESS = process.env.WG_DEFAULT_ADDRESS || '10.8.0.x'; |
|
|
|
module.exports.WG_DEFAULT_DNS = typeof process.env.WG_DEFAULT_DNS === 'string' |
|
|
|
? process.env.WG_DEFAULT_DNS |
|
|
|
|
|
@ -16,6 +16,7 @@ const { |
|
|
|
WG_PORT, |
|
|
|
WG_DEFAULT_DNS, |
|
|
|
WG_DEFAULT_ADDRESS, |
|
|
|
WG_PERSISTENT_KEEPALIVE, |
|
|
|
WG_ALLOWED_IPS, |
|
|
|
} = require('../config'); |
|
|
|
|
|
|
@ -181,6 +182,7 @@ ${WG_DEFAULT_DNS ? `DNS = ${WG_DEFAULT_DNS}` : ''} |
|
|
|
PublicKey = ${config.server.publicKey} |
|
|
|
PresharedKey = ${client.preSharedKey} |
|
|
|
AllowedIPs = ${WG_ALLOWED_IPS} |
|
|
|
PersistentKeepalive = ${WG_PERSISTENT_KEEPALIVE} |
|
|
|
Endpoint = ${WG_HOST}:${WG_PORT}`;
|
|
|
|
} |
|
|
|
|
|
|
|