From d8a48aef29d11d5656737efc5374301f5f78bc47 Mon Sep 17 00:00:00 2001 From: pheiduck <47042125+pheiduck@users.noreply.github.com> Date: Tue, 30 Jul 2024 17:45:00 +0200 Subject: [PATCH 01/15] remove PASSWORD env unused and replace by PASSWORD_HASH --- README.md | 1 - docker-compose.dev.yml | 2 +- docker-compose.yml | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index e559b99..6c7fce8 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,6 @@ These options can be configured by setting environment variables using `-e KEY=" | `PORT` | `51821` | `6789` | TCP port for Web UI. | | `WEBUI_HOST` | `0.0.0.0` | `localhost` | IP address web UI binds to. | | `PASSWORD_HASH` | - | `$2y$05$Ci...` | When set, requires a password when logging in to the Web UI. See [How to generate an bcrypt hash.md]("https://github.com/wg-easy/wg-easy/blob/master/How_to_generate_an_bcrypt_hash.md") for know how generate the hash. | -| `PASSWORD` (deprecated) | - | `foobar123` | When set, requires a password when logging in to the Web UI. *(Not used if `PASSWORD_HASH` is set)* | | `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_PORT` | `51820` | `12345` | The public UDP port of your VPN server. WireGuard will listen on that (othwise default) inside the Docker container. | diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 65e6429..9180733 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -5,5 +5,5 @@ services: volumes: - ./src/:/app/ environment: - # - PASSWORD=p + # - PASSWORD_HASH=p - WG_HOST=192.168.1.233 diff --git a/docker-compose.yml b/docker-compose.yml index 7a6a4f4..dd450ed 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,7 +12,6 @@ services: - WG_HOST=raspberrypi.local # Optional: - # - PASSWORD=foobar123 (deprecated, see readme) # - PASSWORD_HASH=$$2y$$10$$hBCoykrB95WSzuV4fafBzOHWKu9sbyVa34GJr8VV5R/pIelfEMYyG (needs double $$, hash of 'foobar123'; see "How_to_generate_an_bcrypt_hash.md" for generate the hash) # - PORT=51821 # - WG_PORT=51820 From 1416613cc671c0bb86eca6708740482fa965806a Mon Sep 17 00:00:00 2001 From: "Philip H." <47042125+pheiduck@users.noreply.github.com> Date: Tue, 30 Jul 2024 17:57:15 +0200 Subject: [PATCH 02/15] README.md: Reduce confusion in the readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c7fce8..be8a32c 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,8 @@ You have found the easiest way to install & manage WireGuard on any Linux host! ## Versions -We provide more then 1 docker image to get, this will help you decide which one is best for you. +We provide more then 1 docker image to get, this will help you decide which one is best for you.
+For **stable** versions instead of nightly or development please read **README** from the **production** branch! | tag | Branch | Example | Description | | - | - | - | - | From 4ffa6b37de72be7169043d333fd6dae027fd1dd8 Mon Sep 17 00:00:00 2001 From: kikawala Date: Wed, 31 Jul 2024 17:10:25 -0500 Subject: [PATCH 03/15] Spelling in How_to_generate_an_bcrypt_hash.md --- How_to_generate_an_bcrypt_hash.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/How_to_generate_an_bcrypt_hash.md b/How_to_generate_an_bcrypt_hash.md index 88df7b9..d868d23 100644 --- a/How_to_generate_an_bcrypt_hash.md +++ b/How_to_generate_an_bcrypt_hash.md @@ -13,7 +13,7 @@ To generate a bcrypt password hash using docker, run the following command : ```sh docker run ghcr.io/wg-easy/wg-easy wgpw YOUR_PASSWORD -PASSWORD_HASH='$2b$12$coPqCsPtcFO.Ab99xylBNOW4.Iu7OOA2/ZIboHN6/oyxca3MWo7fW' // litteraly YOUR_PASSWORD +PASSWORD_HASH='$2b$12$coPqCsPtcFO.Ab99xylBNOW4.Iu7OOA2/ZIboHN6/oyxca3MWo7fW' // literally YOUR_PASSWORD ``` *Important* : make sure to enclose your password in single quotes when you run `docker run` command : @@ -25,4 +25,4 @@ $ echo "$2b$12$coPqCsPtcF" b2 $ echo '$2b$12$coPqCsPtcF' $2b$12$coPqCsPtcF -``` \ No newline at end of file +``` From ff9c1b49b6f322f5c3e79ffc1ac18367e56c8a80 Mon Sep 17 00:00:00 2001 From: "Philip H." <47042125+pheiduck@users.noreply.github.com> Date: Thu, 1 Aug 2024 17:11:01 +0200 Subject: [PATCH 04/15] CODEOWNERS: add maintainer --- .github/CODEOWNERS | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 7299506..a30b7a1 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,3 +1,4 @@ # Copyright (c) Emile Nijssen (WeeJeWel) # Founder and Codeowner of WireGuard Easy (wg-easy) -* @WeeJeWel +# Maintained by Philip Heiduck (pheiduck) +* @pheiduck From 5938474bf84eacbc476003edf3d1ca246e68fe56 Mon Sep 17 00:00:00 2001 From: "Philip H." <47042125+pheiduck@users.noreply.github.com> Date: Thu, 1 Aug 2024 17:20:11 +0200 Subject: [PATCH 05/15] fixup: docker-compose.dev.yml Improving compose file for dev. Some variables are missed which lead to an error. Fixes: #1234 --- docker-compose.dev.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 9180733..bd4a836 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -1,9 +1,17 @@ services: wg-easy: - image: wg-easy + build: + dockerfile: ./Dockerfile command: npm run serve volumes: - ./src/:/app/ + # - ./data/:/etc/wireguard + ports: + - "51820:51820/udp" + - "51821:51821/tcp" + cap_add: + - NET_ADMIN + - SYS_MODULE environment: - # - PASSWORD_HASH=p + # - PASSWORD=p - WG_HOST=192.168.1.233 From eb0fa90cd00701f351270f419e898321fe49378c Mon Sep 17 00:00:00 2001 From: "Philip H." <47042125+pheiduck@users.noreply.github.com> Date: Mon, 29 Jul 2024 19:41:16 +0200 Subject: [PATCH 06/15] Create pull_request_template.md --- .../pull_request_template.md | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE/pull_request_template.md diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md new file mode 100644 index 0000000..fb8a9e5 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md @@ -0,0 +1,28 @@ + + +## Description + + +## Motivation and Context + + + +## How has this been tested? + + + + +## Screenshots (if appropriate): + +## Types of changes + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) + +## Checklist: + + +- [ ] My code follows the code style of this project. +- [ ] My change requires a change to the documentation. +- [ ] I have updated the documentation accordingly. From c9ff248011bfe6e1fa335701b852c4f948e78d04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=BCsl=C3=BCm=20Bar=C4=B1=C5=9F=20Korkmazer?= Date: Fri, 2 Aug 2024 22:49:56 +0300 Subject: [PATCH 07/15] chore: Update i18n.js Turkish translations --- src/www/js/i18n.js | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/www/js/i18n.js b/src/www/js/i18n.js index b13412e..1deb6fc 100644 --- a/src/www/js/i18n.js +++ b/src/www/js/i18n.js @@ -110,19 +110,25 @@ const messages = { // eslint-disable-line no-unused-vars deleteDialog2: 'Bu işlem geri alınamaz.', cancel: 'İptal', create: 'Oluştur', - createdAt: 'Şu saatte oluşturuldu: ', + createdOn: 'Şu saatte oluşturuldu: ', lastSeen: 'Son görülme tarihi: ', totalDownload: 'Toplam İndirme: ', totalUpload: 'Toplam Yükleme: ', newClient: 'Yeni Kullanıcı', - disableClient: 'İstemciyi Devre Dışı Bırak', - enableClient: 'İstemciyi Etkinleştir', + disableClient: 'Kullanıcıyı Devre Dışı Bırak', + enableClient: 'Kullanıcıyı Etkinleştir', noClients: 'Henüz kullanıcı yok.', + noPrivKey: 'Bu istemcinin bilinen bir özel anahtarı yok. Yapılandırma oluşturulamıyor.', showQR: 'QR Kodunu Göster', downloadConfig: 'Yapılandırmayı İndir', madeBy: 'Yapan Kişi: ', donate: 'Bağış Yap', - changeLang: 'Dil Değiştir', + toggleCharts: 'Grafiği göster/gizle', + theme: { dark: 'Karanlık tema', light: 'Açık tema', auto: 'Otomatik tema' }, + restore: 'Geri yükle', + backup: 'Yedekle', + titleRestoreConfig: 'Yapılandırmanızı geri yükleyin', + titleBackupConfig: 'Yapılandırmanızı yedekleyin', }, no: { // github.com/digvalley name: 'Navn', From 95934c6008ce12529fcdda9be2156dc55585ea68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0brahim=20=C3=87etin?= Date: Wed, 7 Aug 2024 10:29:33 +0300 Subject: [PATCH 08/15] Add autocomplete attribute to password input --- src/www/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/www/index.html b/src/www/index.html index 66dc369..4b7dc17 100644 --- a/src/www/index.html +++ b/src/www/index.html @@ -559,7 +559,7 @@ -