From f9daa3e5beea5317e91e4b7885491f2377b0c58e Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Sat, 6 Apr 2024 23:33:21 +0200 Subject: [PATCH 1/2] Bugfix: differnt Ports usage --- Dockerfile | 6 +++--- README.md | 2 ++ docker-compose.yml | 1 + 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e1271eb8..fe3ae8d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,9 +40,9 @@ RUN apk add --no-cache \ # Use iptables-legacy RUN update-alternatives --install /sbin/iptables iptables /sbin/iptables-legacy 10 --slave /sbin/iptables-restore iptables-restore /sbin/iptables-legacy-restore --slave /sbin/iptables-save iptables-save /sbin/iptables-legacy-save -# Expose Ports -EXPOSE 51820/udp -EXPOSE 51821/tcp +# Expose Ports (If needed on buildtime) +#EXPOSE 51820/udp +#EXPOSE 51821/tcp # Set Environment ENV DEBUG=Server,WireGuard diff --git a/README.md b/README.md index 683d7f80..27f52cce 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,8 @@ To automatically install & run wg-easy, simply run: -e LANG=de \ -e WG_HOST=🚨YOUR_SERVER_IP \ -e PASSWORD=🚨YOUR_ADMIN_PASSWORD \ + -e PORT=51821 \ + -e WG_PORT=51820 \ -v ~/.wg-easy:/etc/wireguard \ -p 51820:51820/udp \ -p 51821:51821/tcp \ diff --git a/docker-compose.yml b/docker-compose.yml index b05426fb..5eec655e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,6 +14,7 @@ services: # Optional: # - PASSWORD=foobar123 + # - PORT=51821 # - WG_PORT=51820 # - WG_DEFAULT_ADDRESS=10.8.0.x # - WG_DEFAULT_DNS=1.1.1.1 From 187888e078c575e2b12ac91db692f3c33283239a Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Mon, 8 Apr 2024 11:14:18 +0200 Subject: [PATCH 2/2] WireGuard.js: fixup ListenPort --- src/lib/WireGuard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/WireGuard.js b/src/lib/WireGuard.js index 739676fb..aa5d42a2 100644 --- a/src/lib/WireGuard.js +++ b/src/lib/WireGuard.js @@ -95,7 +95,7 @@ module.exports = class WireGuard { [Interface] PrivateKey = ${config.server.privateKey} Address = ${config.server.address}/24 -ListenPort = 51820 +ListenPort = ${WG_PORT} PreUp = ${WG_PRE_UP} PostUp = ${WG_POST_UP} PreDown = ${WG_PRE_DOWN}