Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b5ba95938 | |||
| da90d67cc0 | |||
| a52da67b38 | |||
| e513090074 | |||
| 2dc8ba7792 | |||
| 4e8cccb4c7 | |||
| e57b0977d3 | |||
| b8be53c3f7 | |||
| 0794413191 | |||
| 261b0d6b8f | |||
| f656d57d20 | |||
| 46074fea1c | |||
| 05c655ede9 | |||
| ebcc42cc49 | |||
| be8d24e492 | |||
| 9682dedea7 | |||
| 5eb80fe3c1 | |||
| dd9da2a067 | |||
| 15111ecd62 | |||
| e9f4b4650b | |||
| e3e4049f8e |
@@ -16,7 +16,7 @@ jobs:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- uses: pnpm/action-setup@v4
|
||||
- uses: pnpm/action-setup@v6
|
||||
name: Install pnpm
|
||||
with:
|
||||
run_install: false
|
||||
@@ -49,7 +49,7 @@ jobs:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- uses: pnpm/action-setup@v4
|
||||
- uses: pnpm/action-setup@v6
|
||||
name: Install pnpm
|
||||
with:
|
||||
run_install: false
|
||||
|
||||
@@ -14,11 +14,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- CLI: Show QR code (https://github.com/wg-easy/wg-easy/pull/2518)
|
||||
- Copy QR code to clipboard / save as png (https://github.com/wg-easy/wg-easy/pull/2521)
|
||||
|
||||
### Fixed
|
||||
|
||||
- Add trailing newline to Prometheus metrics output (https://github.com/wg-easy/wg-easy/pull/2573)
|
||||
- Correctly use DEBUG env var (https://github.com/wg-easy/wg-easy/pull/2619)
|
||||
|
||||
### Changed
|
||||
|
||||
- Hooks are now Textareas (https://github.com/wg-easy/wg-easy/pull/2522)
|
||||
- Update to Node Krypton (24) (https://github.com/wg-easy/wg-easy/pull/2536)
|
||||
- Mobile UI (https://github.com/wg-easy/wg-easy/pull/2569)
|
||||
- Prevent enabling client when expired (https://github.com/wg-easy/wg-easy/pull/2594)
|
||||
|
||||
## [15.2.2] - 2026-02-06
|
||||
|
||||
|
||||
+8
-5
@@ -7,7 +7,7 @@ RUN npm install --global corepack@latest
|
||||
RUN corepack enable pnpm
|
||||
|
||||
# Copy Web UI
|
||||
COPY src/package.json src/pnpm-lock.yaml ./
|
||||
COPY src/package.json src/pnpm-lock.yaml src/pnpm-workspace.yaml ./
|
||||
RUN pnpm install
|
||||
|
||||
# Build UI
|
||||
@@ -23,6 +23,10 @@ RUN apk add linux-headers build-base go git && \
|
||||
cd ../amneziawg-tools/src && \
|
||||
make
|
||||
|
||||
FROM docker.io/library/node:krypton-alpine AS build-libsql
|
||||
WORKDIR /app
|
||||
RUN npm install --no-save --omit=dev libsql
|
||||
|
||||
# Copy build result to a new image.
|
||||
# This saves a lot of disk space.
|
||||
FROM docker.io/library/node:krypton-alpine
|
||||
@@ -35,9 +39,8 @@ COPY --from=build /app/.output /app
|
||||
# Copy migrations
|
||||
COPY --from=build /app/server/database/migrations /app/server/database/migrations
|
||||
# libsql (https://github.com/nitrojs/nitro/issues/3328)
|
||||
RUN cd /app/server && \
|
||||
npm install --no-save --omit=dev libsql && \
|
||||
npm cache clean --force
|
||||
COPY --from=build-libsql /app/node_modules /app/server/node_modules
|
||||
|
||||
# cli
|
||||
COPY --from=build /app/cli/cli.sh /usr/local/bin/cli
|
||||
RUN chmod +x /usr/local/bin/cli
|
||||
@@ -69,7 +72,7 @@ RUN update-alternatives --install /usr/sbin/iptables iptables /usr/sbin/iptables
|
||||
RUN update-alternatives --install /usr/sbin/ip6tables ip6tables /usr/sbin/ip6tables-legacy 10 --slave /usr/sbin/ip6tables-restore ip6tables-restore /usr/sbin/ip6tables-legacy-restore --slave /usr/sbin/ip6tables-save ip6tables-save /usr/sbin/ip6tables-legacy-save
|
||||
|
||||
# Set Environment
|
||||
ENV DEBUG=Server,WireGuard,Database,CMD
|
||||
ENV DEBUG=Server,WireGuard,Database,CMD,Firewall
|
||||
ENV PORT=51821
|
||||
ENV HOST=0.0.0.0
|
||||
ENV INSECURE=false
|
||||
|
||||
+2
-2
@@ -24,7 +24,7 @@ RUN update-alternatives --install /usr/sbin/iptables iptables /usr/sbin/iptables
|
||||
RUN update-alternatives --install /usr/sbin/ip6tables ip6tables /usr/sbin/ip6tables-legacy 10 --slave /usr/sbin/ip6tables-restore ip6tables-restore /usr/sbin/ip6tables-legacy-restore --slave /usr/sbin/ip6tables-save ip6tables-save /usr/sbin/ip6tables-legacy-save
|
||||
|
||||
# Set Environment
|
||||
ENV DEBUG=Server,WireGuard,Database,CMD
|
||||
ENV DEBUG=Server,WireGuard,Database,CMD,Firewall
|
||||
ENV PORT=51821
|
||||
ENV HOST=0.0.0.0
|
||||
ENV INSECURE=true
|
||||
@@ -32,7 +32,7 @@ ENV INIT_ENABLED=false
|
||||
ENV DISABLE_IPV6=false
|
||||
|
||||
# Install Dependencies
|
||||
COPY src/package.json src/pnpm-lock.yaml ./
|
||||
COPY src/package.json src/pnpm-lock.yaml src/pnpm-workspace.yaml ./
|
||||
RUN pnpm install
|
||||
|
||||
# Copy Project
|
||||
|
||||
@@ -1,16 +1,14 @@
|
||||
# WireGuard Easy
|
||||
|
||||
[](https://github.com/wg-easy/wg-easy/actions/workflows/deploy.yml)
|
||||
[](https://github.com/wg-easy/wg-easy/actions/workflows/deploy.yml)
|
||||
[](https://github.com/wg-easy/wg-easy/actions/workflows/lint.yml)
|
||||
[](https://github.com/wg-easy/wg-easy/stargazers)
|
||||
[](LICENSE)
|
||||
[](https://github.com/wg-easy/wg-easy/releases/latest)
|
||||
[](https://github.com/wg-easy/wg-easy/pkgs/container/wg-easy)
|
||||
[](https://github.com/wg-easy/wg-easy/pkgs/container/wg-easy)
|
||||
|
||||
You have found the easiest way to install & manage WireGuard on any Linux host!
|
||||
|
||||
<!-- TOOD: update screenshot -->
|
||||
|
||||
<p align="center">
|
||||
<img src="./assets/screenshot.png" width="802" alt="wg-easy Screenshot" />
|
||||
</p>
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 33 KiB |
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"fill" : {
|
||||
"automatic-gradient" : "display-p3:0.48853,0.13220,0.12335,1.00000"
|
||||
},
|
||||
"groups" : [
|
||||
{
|
||||
"layers" : [
|
||||
{
|
||||
"fill" : {
|
||||
"automatic-gradient" : "srgb:1.00000,1.00000,1.00000,1.00000"
|
||||
},
|
||||
"image-name" : "wireguard-logo.png",
|
||||
"name" : "wireguard-logo",
|
||||
"position" : {
|
||||
"scale" : 0.5,
|
||||
"translation-in-points" : [
|
||||
255.828125,
|
||||
-225.5
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"fill-specializations" : [
|
||||
{
|
||||
"value" : {
|
||||
"automatic-gradient" : "srgb:1.00000,1.00000,1.00000,1.00000"
|
||||
}
|
||||
},
|
||||
{
|
||||
"appearance" : "dark",
|
||||
"value" : {
|
||||
"automatic-gradient" : "display-p3:0.48853,0.13220,0.12335,1.00000"
|
||||
}
|
||||
}
|
||||
],
|
||||
"image-name" : "ticket.png",
|
||||
"name" : "ticket",
|
||||
"position" : {
|
||||
"scale" : 1.2,
|
||||
"translation-in-points" : [
|
||||
-119.91562499999998,
|
||||
165.65625
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"shadow" : {
|
||||
"kind" : "neutral",
|
||||
"opacity" : 0.5
|
||||
},
|
||||
"translucency" : {
|
||||
"enabled" : true,
|
||||
"value" : 0.5
|
||||
}
|
||||
}
|
||||
],
|
||||
"supported-platforms" : {
|
||||
"circles" : [
|
||||
"watchOS"
|
||||
],
|
||||
"squares" : "shared"
|
||||
}
|
||||
}
|
||||
+2
-2
@@ -11,7 +11,7 @@
|
||||
"format:check:docs": "prettier --check docs"
|
||||
},
|
||||
"devDependencies": {
|
||||
"prettier": "^3.8.1"
|
||||
"prettier": "^3.8.3"
|
||||
},
|
||||
"packageManager": "pnpm@10.32.1"
|
||||
"packageManager": "pnpm@11.1.2"
|
||||
}
|
||||
|
||||
Generated
+5
-5
@@ -9,16 +9,16 @@ importers:
|
||||
.:
|
||||
devDependencies:
|
||||
prettier:
|
||||
specifier: ^3.8.1
|
||||
version: 3.8.1
|
||||
specifier: ^3.8.3
|
||||
version: 3.8.3
|
||||
|
||||
packages:
|
||||
|
||||
prettier@3.8.1:
|
||||
resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==}
|
||||
prettier@3.8.3:
|
||||
resolution: {integrity: sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==}
|
||||
engines: {node: '>=14'}
|
||||
hasBin: true
|
||||
|
||||
snapshots:
|
||||
|
||||
prettier@3.8.1: {}
|
||||
prettier@3.8.3: {}
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
setups.@nuxt/test-utils="4.0.0"
|
||||
setups.@nuxt/test-utils="4.0.3"
|
||||
@@ -16,7 +16,7 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import type { ApexOptions } from 'apexcharts';
|
||||
import type { ApexChart, ApexOptions } from 'apexcharts';
|
||||
|
||||
defineProps<{
|
||||
client: LocalClient;
|
||||
|
||||
+152
-1
@@ -120,7 +120,11 @@
|
||||
"endpointDesc": "IP do cliente desde a que se establece a conexión WireGuard",
|
||||
"search": "Buscar clientes...",
|
||||
"config": "Configuración",
|
||||
"viewConfig": "Ver configuración"
|
||||
"viewConfig": "Ver configuración",
|
||||
"firewallIps": "IPs permitidas do cortalumes",
|
||||
"firewallIpsDesc": "IPs/CIDRs de destino aos que este cliente pode acceder (aplicado no lado do servidor). Déixao baleiro para usar as IPs permitidas. Admite filtrado opcional por porto e protocolo. Consulta a documentación para a sintaxe.",
|
||||
"downloadPng": "Descargar PNG",
|
||||
"copyPng": "Copiar PNG"
|
||||
},
|
||||
"dialog": {
|
||||
"change": "Cambiar",
|
||||
@@ -141,5 +145,152 @@
|
||||
"noItems": "Sen elementos",
|
||||
"nullNoItems": "Sen elementos. Usando a configuración global",
|
||||
"add": "Engadir"
|
||||
},
|
||||
"admin": {
|
||||
"general": {
|
||||
"sessionTimeout": "Tempo límite da sesión",
|
||||
"sessionTimeoutDesc": "Duración da sesión para Lembrarme (segundos)",
|
||||
"metrics": "Métricas",
|
||||
"metricsPassword": "Contrasinal",
|
||||
"metricsPasswordDesc": "Contrasinal Bearer para o endpoint de métricas (contrasinal ou hash argon2)",
|
||||
"json": "JSON",
|
||||
"jsonDesc": "Ruta para as métricas en formato JSON",
|
||||
"prometheus": "Prometheus",
|
||||
"prometheusDesc": "Ruta para as métricas de Prometheus"
|
||||
},
|
||||
"config": {
|
||||
"connection": "Conexión",
|
||||
"hostDesc": "Nome de host público ao que se conectarán os clientes (invalida a configuración)",
|
||||
"portDesc": "Porto UDP público ao que se conectarán os clientes (invalida a configuración; probablemente tamén queiras cambiar o Porto da interface)",
|
||||
"allowedIpsDesc": "IPs permitidas que usarán os clientes (configuración global)",
|
||||
"dnsDesc": "Servidor DNS que usarán os clientes (configuración global)",
|
||||
"mtuDesc": "MTU que usarán os clientes (só para clientes novos)",
|
||||
"persistentKeepaliveDesc": "Intervalo en segundos para enviar keepalives ao servidor. 0 = desactivado (só para clientes novos)",
|
||||
"suggest": "Suxerir",
|
||||
"suggestDesc": "Escolle un enderezo IP ou nome de host para o campo Host"
|
||||
},
|
||||
"interface": {
|
||||
"cidrSuccess": "CIDR cambiado",
|
||||
"device": "Dispositivo",
|
||||
"deviceDesc": "Dispositivo Ethernet polo que se redirixirá o tráfico de WireGuard",
|
||||
"mtuDesc": "MTU que usará WireGuard",
|
||||
"portDesc": "Porto UDP no que WireGuard escoitará (probablemente tamén queiras cambiar o Porto da configuración)",
|
||||
"changeCidr": "Cambiar CIDR",
|
||||
"restart": "Reiniciar interface",
|
||||
"restartDesc": "Reiniciar a interface de WireGuard",
|
||||
"restartWarn": "Seguro que queres reiniciar a interface? Isto desconectará todos os clientes.",
|
||||
"restartSuccess": "Interface reiniciada",
|
||||
"firewall": "Filtrado de tráfico",
|
||||
"firewallEnabled": "Activar devasa por cliente",
|
||||
"firewallEnabledDesc": "Restrinxir o tráfico dos clientes a IPs de destino específicas usando iptables. Cando está activado, cada cliente pode configurarse con destinos permitidos."
|
||||
},
|
||||
"introText": "Benvido ao panel de administración.\n\nAquí podes xestionar a configuración xeral, a configuración, os axustes da interface e os hooks.\n\nComeza escollendo unha das seccións na barra lateral."
|
||||
},
|
||||
"zod": {
|
||||
"generic": {
|
||||
"required": "{0} é obrigatorio",
|
||||
"validNumber": "{0} debe ser un número válido",
|
||||
"validNumberRange": "{0} debe ser un número válido ou un rango de números",
|
||||
"validString": "{0} debe ser unha cadea válida",
|
||||
"validBoolean": "{0} debe ser un booleano válido",
|
||||
"validArray": "{0} debe ser un array válido",
|
||||
"stringMin": "{0} debe ter polo menos {1} carácter",
|
||||
"numberMin": "{0} debe ser polo menos {1}"
|
||||
},
|
||||
"client": {
|
||||
"id": "ID do cliente",
|
||||
"name": "Nome",
|
||||
"expiresAt": "Caduca o",
|
||||
"address4": "Enderezo IPv4",
|
||||
"address6": "Enderezo IPv6",
|
||||
"serverAllowedIps": "IPs permitidas do servidor",
|
||||
"firewallIps": "IPs permitidas da devasa",
|
||||
"firewallIpsInvalid": "Entrada de IP da devasa non válida. Consulta a documentación para a sintaxe admitida."
|
||||
},
|
||||
"user": {
|
||||
"username": "Nome de usuario",
|
||||
"password": "Contrasinal",
|
||||
"remember": "Lembrar",
|
||||
"name": "Nome",
|
||||
"email": "Correo electrónico",
|
||||
"emailInvalid": "O correo electrónico debe ser válido",
|
||||
"passwordMatch": "Os contrasinais deben coincidir",
|
||||
"totpEnable": "Activar TOTP",
|
||||
"totpEnableTrue": "Activar TOTP debe ser verdadeiro",
|
||||
"totpCode": "Código TOTP"
|
||||
},
|
||||
"userConfig": {
|
||||
"host": "Host"
|
||||
},
|
||||
"general": {
|
||||
"sessionTimeout": "Tempo límite da sesión",
|
||||
"metricsEnabled": "Métricas",
|
||||
"metricsPassword": "Contrasinal das métricas"
|
||||
},
|
||||
"interface": {
|
||||
"cidr": "CIDR",
|
||||
"device": "Dispositivo",
|
||||
"cidrValid": "O CIDR debe ser válido"
|
||||
},
|
||||
"otl": "Ligazón dun só uso",
|
||||
"stringMalformed": "A cadea está mal formada",
|
||||
"body": "O corpo debe ser un obxecto válido",
|
||||
"hook": "Hook",
|
||||
"enabled": "Activado",
|
||||
"mtu": "MTU",
|
||||
"port": "Porto",
|
||||
"persistentKeepalive": "Keepalive persistente",
|
||||
"address": "Enderezo IP",
|
||||
"dns": "DNS",
|
||||
"allowedIps": "IPs permitidas",
|
||||
"file": "Ficheiro"
|
||||
},
|
||||
"hooks": {
|
||||
"preUp": "PreUp",
|
||||
"postUp": "PostUp",
|
||||
"preDown": "PreDown",
|
||||
"postDown": "PostDown"
|
||||
},
|
||||
"copy": {
|
||||
"notSupported": "Copiar non é compatible",
|
||||
"copied": "Copiado!",
|
||||
"failed": "Erro ao copiar",
|
||||
"copy": "Copiar"
|
||||
},
|
||||
"awg": {
|
||||
"jCLabel": "Número de paquetes lixo (Jc)",
|
||||
"jCDescription": "Número de paquetes lixo para enviar (1-128, recomendado: 4-12)",
|
||||
"jMinLabel": "Tamaño mínimo dos paquetes lixo (Jmin)",
|
||||
"jMinDescription": "Tamaño mínimo dos paquetes lixo (0-1279*, recomendado: 8, debe ser < Jmax)",
|
||||
"jMaxLabel": "Tamaño máximo dos paquetes lixo (Jmax)",
|
||||
"jMaxDescription": "Tamaño máximo dos paquetes lixo (1-1280*, recomendado: 80, debe ser > Jmin)",
|
||||
"s1Label": "Tamaño lixo do paquete de inicio (S1)",
|
||||
"s1Description": "Tamaño lixo do paquete de inicio (0-1132[1280* - 148 = 1132], recomendado: 15-150, S1+56 ≠ S2)",
|
||||
"s2Label": "Tamaño lixo do paquete de resposta (S2)",
|
||||
"s2Description": "Tamaño lixo do paquete de resposta (0-1188[1280* - 92 = 1188], recomendado: 15-150)",
|
||||
"s3Label": "Tamaño lixo do paquete de resposta cookie (S3)",
|
||||
"s3Description": "Tamaño lixo do paquete de resposta cookie",
|
||||
"s4Label": "Tamaño lixo do paquete de transporte (S4)",
|
||||
"s4Description": "Tamaño lixo do paquete de transporte",
|
||||
"h1Label": "Cabeceira máxica de inicio (H1)",
|
||||
"h1Description": "Valor ou rango da cabeceira do paquete de inicio (X ou X-Y, onde X<Y. Mín 5, máx 2147483647. O valor ou rango non debe solaparse con outras cabeceiras)",
|
||||
"h2Label": "Cabeceira máxica de resposta (H2)",
|
||||
"h2Description": "Valor ou rango da cabeceira do paquete de resposta (X ou X-Y, onde X<Y. Mín 5, máx 2147483647. O valor ou rango non debe solaparse con outras cabeceiras)",
|
||||
"h3Label": "Cabeceira máxica da resposta cookie (H3)",
|
||||
"h3Description": "Valor ou rango da cabeceira do paquete de resposta cookie (X ou X-Y, onde X<Y. Mín 5, máx 2147483647. O valor ou rango non debe solaparse con outras cabeceiras)",
|
||||
"h4Label": "Cabeceira máxica de transporte (H4)",
|
||||
"h4Description": "Valor ou rango da cabeceira do paquete de transporte (X ou X-Y, onde X<Y. Mín 5, máx 2147483647. O valor ou rango non debe solaparse con outras cabeceiras)",
|
||||
"i1Label": "Paquete lixo especial 1 (I1)",
|
||||
"i1Description": "Paquete de simulación de protocolo en formato hexadecimal: <b 0x...>",
|
||||
"i2Label": "Paquete lixo especial 2 (I2)",
|
||||
"i2Description": "Paquete de simulación de protocolo en formato hexadecimal: <b 0x...>",
|
||||
"i3Label": "Paquete lixo especial 3 (I3)",
|
||||
"i3Description": "Paquete de simulación de protocolo en formato hexadecimal: <b 0x...>",
|
||||
"i4Label": "Paquete lixo especial 4 (I4)",
|
||||
"i4Description": "Paquete de simulación de protocolo en formato hexadecimal: <b 0x...>",
|
||||
"i5Label": "Paquete lixo especial 5 (I5)",
|
||||
"i5Description": "Paquete de simulación de protocolo en formato hexadecimal: <b 0x...>",
|
||||
"mtuNote": "Os valores dependen da MTU",
|
||||
"obfuscationParameters": "Parámetros de ofuscación de AmneziaWG"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,9 +45,9 @@
|
||||
},
|
||||
"setup": {
|
||||
"welcome": "歡迎首次設定wg-easy",
|
||||
"welcomeDesc": "這是最簡單的方法讓你在任何Linux主機上安裝及管理WireGuard",
|
||||
"welcomeDesc": "這是在任何Linux主機上安裝與管理WireGuard最簡單的方法。",
|
||||
"existingSetup": "你有現存設定嗎?",
|
||||
"createAdminDesc": "請輸入管理員用戶名及一個高強度密碼。這些資料將用於登入管理員版面。",
|
||||
"createAdminDesc": "請輸入管理員用戶名及高強度密碼。這些資料將用於登入管理員版面。",
|
||||
"setupConfigDesc": "請輸入主機及連接埠資料。這將用於客戶端設定,以便在他們的裝置上設定WireGuard。",
|
||||
"setupMigrationDesc": "如果你想將舊版wg-easy的資料轉移到新設定,請提供備份檔案。",
|
||||
"upload": "上傳",
|
||||
@@ -88,6 +88,7 @@
|
||||
"name": "名稱",
|
||||
"expireDate": "有效期",
|
||||
"expireDateDesc": "客戶端將於此日期停用。留空則為永久有效",
|
||||
"delete": "刪除",
|
||||
"deleteClient": "刪除客戶端",
|
||||
"deleteDialog1": "你確定要刪除",
|
||||
"deleteDialog2": "此操作無法還原。",
|
||||
@@ -114,21 +115,31 @@
|
||||
"hooksDescription": "掛鉤僅適用於wg-quick",
|
||||
"hooksLeaveEmpty": "僅適用於wg-quick,否則請留空",
|
||||
"dnsDesc": "客戶端使用的域名系統伺服器(取代全局配置)",
|
||||
"search": "搜尋客戶端..."
|
||||
"notConnected": "客戶端尚未連接",
|
||||
"endpoint": "端點",
|
||||
"endpointDesc": "建立WireGuard連線的客戶端IP地址",
|
||||
"search": "搜尋客戶端...",
|
||||
"config": "配置",
|
||||
"viewConfig": "檢視配置",
|
||||
"firewallIps": "防火牆IP白名單",
|
||||
"firewallIpsDesc": "此客戶端可存取的目的地IP/CIDR(伺服器端強制執行)。留空則使用「IP白名單」。支援選填的連接埠及協定過濾,語法請參閱說明文件。",
|
||||
"downloadPng": "正在下載PNG",
|
||||
"copyPng": "複製PNG"
|
||||
},
|
||||
"dialog": {
|
||||
"change": "更改",
|
||||
"cancel": "取消",
|
||||
"create": "創建"
|
||||
"create": "建立"
|
||||
},
|
||||
"toast": {
|
||||
"success": "成功",
|
||||
"saved": "已保存",
|
||||
"error": "錯誤"
|
||||
"saved": "已儲存",
|
||||
"error": "錯誤",
|
||||
"unknown": "未知錯誤。詳情請參閱主控台。"
|
||||
},
|
||||
"form": {
|
||||
"actions": "操作",
|
||||
"save": "保存",
|
||||
"save": "儲存",
|
||||
"revert": "重置",
|
||||
"sectionGeneral": "一般設定",
|
||||
"sectionAdvanced": "進階",
|
||||
@@ -169,7 +180,10 @@
|
||||
"restart": "重啟介面",
|
||||
"restartDesc": "重啟WireGuard介面",
|
||||
"restartWarn": "你確定要重新啟動介面嗎?這將中斷所有客戶端連線。",
|
||||
"restartSuccess": "介面已重啟"
|
||||
"restartSuccess": "介面已重啟",
|
||||
"firewall": "流量過濾",
|
||||
"firewallEnabled": "啟用獨立客戶端防火牆",
|
||||
"firewallEnabledDesc": "使用iptables以限制客戶端流量至特定的目的地IP。啟用後,即可為每個客戶端單獨設定允許目的地。"
|
||||
},
|
||||
"introText": "歡迎來到管理員版面。\n\n你可以在側邊欄中管理一般、配置、介面和掛鉤設定。"
|
||||
},
|
||||
@@ -177,6 +191,7 @@
|
||||
"generic": {
|
||||
"required": "{0}為必填項",
|
||||
"validNumber": "{0}必須是有效的數字",
|
||||
"validNumberRange": "{0}必須是有效的數字或數字範圍",
|
||||
"validString": "{0}必須是有效的字串",
|
||||
"validBoolean": "{0}必須是有效的布林值",
|
||||
"validArray": "{0}必須是有效的陣列",
|
||||
@@ -189,7 +204,9 @@
|
||||
"expiresAt": "到期於",
|
||||
"address4": "IPv4地址",
|
||||
"address6": "IPv6地址",
|
||||
"serverAllowedIps": "伺服器IP白名單"
|
||||
"serverAllowedIps": "伺服器IP白名單",
|
||||
"firewallIps": "防火牆IP白名單",
|
||||
"firewallIpsInvalid": "防火牆IP輸入格式無效。請參閱說明文件以查看支援語法。"
|
||||
},
|
||||
"user": {
|
||||
"username": "用戶名",
|
||||
@@ -234,5 +251,47 @@
|
||||
"postUp": "PostUp",
|
||||
"preDown": "PreDown",
|
||||
"postDown": "PostDown"
|
||||
},
|
||||
"copy": {
|
||||
"notSupported": "不支援複製",
|
||||
"copied": "已複製!",
|
||||
"failed": "複製失敗",
|
||||
"copy": "複製"
|
||||
},
|
||||
"awg": {
|
||||
"jCLabel": "填充封包數量 (Jc)",
|
||||
"jCDescription": "要傳送的填充封包數量 (1-128,建議: 4-12)",
|
||||
"jMinLabel": "填充封包最小大小 (Jmin)",
|
||||
"jMinDescription": "填充封包的最小大小 (0-1279*,建議: 8,必須<Jmax)",
|
||||
"jMaxLabel": "填充封包最大大小 (Jmax)",
|
||||
"jMaxDescription": "填充封包的最大大小 (1-1280*,建議: 80,必須>Jmin)",
|
||||
"s1Label": "初始封包填充大小 (S1)",
|
||||
"s1Description": "初始封包填充大小 (0-1132 [1280* - 148 = 1132],建議: 15-150,S1+56 ≠ S2)",
|
||||
"s2Label": "回應封包填充大小 (S2)",
|
||||
"s2Description": "回應封包填充大小 (0-1188 [1280* - 92 = 1188],建議: 15-150)",
|
||||
"s3Label": "Cookie 回覆封包填充大小 (S3)",
|
||||
"s3Description": "Cookie 回覆封包填充大小",
|
||||
"s4Label": "傳輸封包填充大小 (S4)",
|
||||
"s4Description": "傳輸封包填充大小",
|
||||
"h1Label": "初始特徵標頭 (H1)",
|
||||
"h1Description": "初始封包標頭值 (5-2147483647,必須與 H2-H4 不同)",
|
||||
"h2Label": "回應特徵標頭 (H2)",
|
||||
"h2Description": "回應封包標頭值 (5-2147483647,必須與 H1、H3、H4 不同)",
|
||||
"h3Label": "Cookie 回覆特徵標頭 (H3)",
|
||||
"h3Description": "Cookie 回覆封包標頭值 (5-2147483647,必須與 H1、H2、H4 不同)",
|
||||
"h4Label": "傳輸特徵標頭 (H4)",
|
||||
"h4Description": "傳輸封包標頭值 (5-2147483647,必須與 H1-H3 不同)",
|
||||
"i1Label": "特殊填充封包 1 (I1)",
|
||||
"i1Description": "協定模仿封包 (16 進位格式): <b 0x...>",
|
||||
"i2Label": "特殊填充封包 2 (I2)",
|
||||
"i2Description": "協定模仿封包 (16 進位格式): <b 0x...>",
|
||||
"i3Label": "特殊填充封包 3 (I3)",
|
||||
"i3Description": "協定模仿封包 (16 進位格式): <b 0x...>",
|
||||
"i4Label": "特殊填充封包 4 (I4)",
|
||||
"i4Description": "協定模仿封包 (16 進位格式): <b 0x...>",
|
||||
"i5Label": "特殊填充封包 5 (I5)",
|
||||
"i5Description": "協定模仿封包 (16 進位格式): <b 0x...>",
|
||||
"mtuNote": "數值取決於 MTU",
|
||||
"obfuscationParameters": "AmneziaWG 混淆參數"
|
||||
}
|
||||
}
|
||||
|
||||
+29
-30
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "wg-easy",
|
||||
"version": "15.3.0-beta.2",
|
||||
"version": "15.3.0",
|
||||
"description": "The easiest way to run WireGuard VPN + Web-based Admin UI.",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
@@ -23,56 +23,55 @@
|
||||
"dependencies": {
|
||||
"@eschricht/nuxt-color-mode": "^1.2.0",
|
||||
"@heroicons/vue": "^2.2.0",
|
||||
"@libsql/client": "^0.17.0",
|
||||
"@nuxtjs/i18n": "^10.2.3",
|
||||
"@libsql/client": "^0.17.3",
|
||||
"@nuxtjs/i18n": "^10.3.0",
|
||||
"@nuxtjs/tailwindcss": "^6.14.0",
|
||||
"@phc/format": "^1.0.0",
|
||||
"@pinia/nuxt": "^0.11.3",
|
||||
"@tailwindcss/forms": "^0.5.11",
|
||||
"@vueuse/core": "^14.2.1",
|
||||
"@vueuse/nuxt": "^14.2.1",
|
||||
"apexcharts": "^5.10.4",
|
||||
"@vueuse/core": "^14.3.0",
|
||||
"@vueuse/nuxt": "^14.3.0",
|
||||
"apexcharts": "^5.12.0",
|
||||
"argon2": "^0.44.0",
|
||||
"cidr-tools": "^11.2.1",
|
||||
"citty": "^0.2.1",
|
||||
"cidr-tools": "^12.0.1",
|
||||
"citty": "^0.2.2",
|
||||
"consola": "^3.4.2",
|
||||
"crc-32": "^1.2.2",
|
||||
"debug": "^4.4.3",
|
||||
"drizzle-orm": "^0.45.1",
|
||||
"ip-bigint": "^8.2.12",
|
||||
"is-cidr": "^6.0.3",
|
||||
"drizzle-orm": "^0.45.2",
|
||||
"ip-bigint": "^9.0.4",
|
||||
"is-cidr": "^7.0.0",
|
||||
"is-ip": "^5.0.1",
|
||||
"js-sha256": "^0.11.1",
|
||||
"nuxt": "^3.21.2",
|
||||
"otpauth": "^9.5.0",
|
||||
"nuxt": "^3.21.5",
|
||||
"obug": "^2.1.1",
|
||||
"otpauth": "^9.5.1",
|
||||
"pinia": "^3.0.4",
|
||||
"qr": "^0.5.5",
|
||||
"qr": "^0.6.0",
|
||||
"radix-vue": "^1.9.17",
|
||||
"semver": "^7.7.4",
|
||||
"semver": "^7.8.0",
|
||||
"tailwindcss": "^3.4.19",
|
||||
"timeago.js": "^4.0.2",
|
||||
"vue": "latest",
|
||||
"vue3-apexcharts": "^1.11.1",
|
||||
"zod": "^4.3.6"
|
||||
"zod": "^4.4.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nuxt/eslint": "^1.15.2",
|
||||
"@nuxt/test-utils": "^4.0.0",
|
||||
"@types/debug": "^4.1.12",
|
||||
"@nuxt/test-utils": "^4.0.3",
|
||||
"@types/phc__format": "^1.0.1",
|
||||
"@types/semver": "^7.7.1",
|
||||
"@vitest/coverage-v8": "^4.1.0",
|
||||
"@vitest/ui": "^4.1.0",
|
||||
"drizzle-kit": "^0.31.9",
|
||||
"esbuild": "^0.27.4",
|
||||
"@vitest/coverage-v8": "^4.1.6",
|
||||
"@vitest/ui": "^4.1.6",
|
||||
"drizzle-kit": "^0.31.10",
|
||||
"esbuild": "^0.28.0",
|
||||
"eslint": "^9.39.4",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"prettier": "^3.8.1",
|
||||
"prettier-plugin-tailwindcss": "^0.7.2",
|
||||
"tsx": "^4.21.0",
|
||||
"typescript": "^5.9.3",
|
||||
"vitest": "^4.1.0",
|
||||
"vue-tsc": "^3.2.5"
|
||||
"prettier": "^3.8.3",
|
||||
"prettier-plugin-tailwindcss": "^0.8.0",
|
||||
"tsx": "^4.22.1",
|
||||
"typescript": "^6.0.3",
|
||||
"vitest": "^4.1.6",
|
||||
"vue-tsc": "^3.2.9"
|
||||
},
|
||||
"packageManager": "pnpm@10.32.1"
|
||||
"packageManager": "pnpm@11.1.2"
|
||||
}
|
||||
|
||||
Generated
+3295
-2765
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,6 @@
|
||||
allowBuilds:
|
||||
'@parcel/watcher': false
|
||||
argon2: false
|
||||
esbuild: false
|
||||
unrs-resolver: false
|
||||
vue-demi: false
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 663 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 1.9 MiB |
@@ -12,6 +12,19 @@ export default definePermissionEventHandler(
|
||||
const client = await Database.clients.get(clientId);
|
||||
checkPermissions(client);
|
||||
|
||||
if (
|
||||
client &&
|
||||
client.expiresAt !== null &&
|
||||
new Date() > new Date(client.expiresAt)
|
||||
) {
|
||||
throw createError({
|
||||
statusCode: 422,
|
||||
statusMessage:
|
||||
'Client is expired. Please update the expiration date first.',
|
||||
message: 'Client is expired. Please update the expiration date first.',
|
||||
});
|
||||
}
|
||||
|
||||
await Database.clients.toggle(clientId, true);
|
||||
await WireGuard.saveConfig();
|
||||
return { success: true };
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { drizzle } from 'drizzle-orm/libsql';
|
||||
import { migrate as drizzleMigrate } from 'drizzle-orm/libsql/migrator';
|
||||
import { createClient } from '@libsql/client';
|
||||
import debug from 'debug';
|
||||
import { createDebug } from 'obug';
|
||||
import { eq } from 'drizzle-orm';
|
||||
|
||||
import * as schema from './schema';
|
||||
@@ -13,7 +13,7 @@ import { InterfaceService } from './repositories/interface/service';
|
||||
import { HooksService } from './repositories/hooks/service';
|
||||
import { OneTimeLinkService } from './repositories/oneTimeLink/service';
|
||||
|
||||
const DB_DEBUG = debug('Database');
|
||||
const DB_DEBUG = createDebug('Database');
|
||||
|
||||
const client = createClient({ url: 'file:/etc/wireguard/wg-easy.db' });
|
||||
const db = drizzle({ client, schema });
|
||||
|
||||
@@ -62,6 +62,7 @@ async function getPrometheusResponse() {
|
||||
'# HELP wireguard_latest_handshake_seconds UNIX timestamp seconds of the last handshake',
|
||||
'# TYPE wireguard_latest_handshake_seconds gauge',
|
||||
`${wireguardLatestHandshakeSeconds.join('\n')}`,
|
||||
'',
|
||||
];
|
||||
|
||||
return returnText.join('\n');
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import fs from 'node:fs/promises';
|
||||
import debug from 'debug';
|
||||
import { createDebug } from 'obug';
|
||||
import type { InterfaceType } from '#db/repositories/interface/types';
|
||||
|
||||
const WG_DEBUG = debug('WireGuard');
|
||||
const WG_DEBUG = createDebug('WireGuard');
|
||||
|
||||
const generateRandomHeaderValue = () =>
|
||||
Math.floor(Math.random() * 2147483642) + 5;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import childProcess from 'child_process';
|
||||
import debug from 'debug';
|
||||
import { createDebug } from 'obug';
|
||||
|
||||
const CMD_DEBUG = debug('CMD');
|
||||
const CMD_DEBUG = createDebug('CMD');
|
||||
|
||||
export function exec(
|
||||
cmd: string,
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import debug from 'debug';
|
||||
import { createDebug } from 'obug';
|
||||
import packageJson from '@@/package.json';
|
||||
|
||||
export const RELEASE = 'v' + packageJson.version;
|
||||
|
||||
export const SERVER_DEBUG = debug('Server');
|
||||
export const SERVER_DEBUG = createDebug('Server');
|
||||
|
||||
export const OLD_ENV = {
|
||||
/** @deprecated Only for migration purposes */
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
import debug from 'debug';
|
||||
import { createDebug } from 'obug';
|
||||
import { isIPv6 } from 'is-ip';
|
||||
|
||||
import type { ClientType } from '#db/repositories/client/types';
|
||||
import type { InterfaceType } from '#db/repositories/interface/types';
|
||||
import type { UserConfigType } from '#db/repositories/userConfig/types';
|
||||
|
||||
const FW_DEBUG = debug('Firewall');
|
||||
const FW_DEBUG = createDebug('Firewall');
|
||||
const CHAIN_NAME = 'WG_CLIENTS';
|
||||
|
||||
// Mutex to prevent concurrent rule rebuilds
|
||||
|
||||
Reference in New Issue
Block a user