Browse Source

MD033

pull/955/head
valorisa 2 years ago
parent
commit
14c081f481
  1. 21
      .vscode/c_cpp_properties.json
  2. 10
      README.md

21
.vscode/c_cpp_properties.json

@ -0,0 +1,21 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.22621.0",
"compilerPath": "cl.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-msvc-x64"
}
],
"version": 4
}

10
README.md

@ -10,7 +10,7 @@
You have found the easiest way to install & manage WireGuard on any Linux host ! You have found the easiest way to install & manage WireGuard on any Linux host !
<p align="center"> <p align="center">
<img src="./assets/screenshot.png" width="802" /> <img src="./assets/screenshot.png" alt="Alternate text" width="802" />
</p> </p>
## Features ## Features
@ -36,9 +36,9 @@ You have found the easiest way to install & manage WireGuard on any Linux host!
If you haven't installed Docker yet, install it by running: If you haven't installed Docker yet, install it by running:
```bash ```bash
$ curl -sSL https://get.docker.com | sh curl -sSL https://get.docker.com | sh
$ sudo usermod -aG docker $(whoami) sudo usermod -aG docker $(whoami)
$ exit exit
``` ```
And log in again. And log in again.
@ -80,7 +80,7 @@ Are you enjoying this project? [Buy me a beer!](https://github.com/sponsors/WeeJ
These options can be configured by setting environment variables using `-e KEY="VALUE"` in the `docker run` command. These options can be configured by setting environment variables using `-e KEY="VALUE"` in the `docker run` command.
| Env | Default | Example | Description | | Env | Default | Example | Description |
| - | - | - | - | | ------------------------- | ----------------- | ------------------------------ | ------------------------------------------------------------------------------------------------------------ |
| `PASSWORD` | - | `foobar123` | When set, requires a password when logging in to the Web UI. | | `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_HOST` | - | `vpn.myserver.com` | The public hostname of your VPN server. |
| `WG_DEVICE` | `eth0` | `ens6f0` | Ethernet device the wireguard traffic should be forwarded through. | | `WG_DEVICE` | `eth0` | `ens6f0` | Ethernet device the wireguard traffic should be forwarded through. |

Loading…
Cancel
Save