Browse Source

Minor cosmetic changes

pull/1239/head
Viktor Yudov 2 years ago
parent
commit
c08f291df5
  1. 4
      README.md
  2. 2
      docker-compose.yml
  3. 2
      src/www/index.html

4
README.md

@ -71,8 +71,8 @@ These options can be configured by setting environment variables using `-e KEY="
| `WEBUI_HOST` | `0.0.0.0` | `localhost` | IP address web UI binds to. | | `WEBUI_HOST` | `0.0.0.0` | `localhost` | IP address web UI binds to. |
| `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 AmneziaWG traffic should be forwarded through. |
| `WG_PORT` | `51820` | `12345` | The public UDP port of your VPN server. WireGuard will always listen on 51820 inside the Docker container. | | `WG_PORT` | `51820` | `12345` | The public UDP port of your VPN server. AmneziaWG will always listen on 51820 inside the Docker container. |
| `WG_MTU` | `null` | `1420` | The MTU the clients will use. Server uses default WG MTU. | | `WG_MTU` | `null` | `1420` | The MTU the clients will use. Server uses default WG MTU. |
| `WG_PERSISTENT_KEEPALIVE` | `0` | `25` | Value in seconds to keep the "connection" open. If this value is 0, then connections won't be kept alive. | | `WG_PERSISTENT_KEEPALIVE` | `0` | `25` | Value in seconds to keep the "connection" open. If this value is 0, then connections won't be kept alive. |
| `WG_DEFAULT_ADDRESS` | `10.8.0.x` | `10.6.0.x` | Clients IP address range. | | `WG_DEFAULT_ADDRESS` | `10.8.0.x` | `10.6.0.x` | Clients IP address range. |

2
docker-compose.yml

@ -1,6 +1,6 @@
version: "3.8" version: "3.8"
volumes: volumes:
etc_wireguard: etc_amneziawg:
services: services:
amnezia-wg-easy: amnezia-wg-easy:

2
src/www/index.html

@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<title>WireGuard</title> <title>AmneziaWG</title>
<link href="./css/app.css" rel="stylesheet"> <link href="./css/app.css" rel="stylesheet">
<link rel="manifest" href="./manifest.json"> <link rel="manifest" href="./manifest.json">
<link rel="icon" href="img/favicon.ico" sizes="any"> <link rel="icon" href="img/favicon.ico" sizes="any">

Loading…
Cancel
Save