diff --git a/Dockerfile b/Dockerfile index 65d96358..428b8d82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,6 +47,7 @@ ENV DEBUG=Server,WireGuard,Database,CMD ENV PORT=51821 ENV HOST=0.0.0.0 ENV INSECURE=false +ENV INIT_ENABLED=false LABEL org.opencontainers.image.source=https://github.com/wg-easy/wg-easy diff --git a/Dockerfile.dev b/Dockerfile.dev index b0c3a0dd..50d18112 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -26,7 +26,8 @@ RUN update-alternatives --install /usr/sbin/ip6tables ip6tables /usr/sbin/ip6tab ENV DEBUG=Server,WireGuard,Database,CMD ENV PORT=51821 ENV HOST=0.0.0.0 -ENV INSECURE=false +ENV INSECURE=true +ENV INIT_ENABLED=false # Install Dependencies COPY src/package.json src/pnpm-lock.yaml ./ diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index fc002bb3..8f9dad6e 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -15,6 +15,12 @@ services: cap_add: - NET_ADMIN - SYS_MODULE + environment: + - INIT_ENABLED=true + - INIT_HOST=test + - INIT_PORT=51820 + - INIT_USERNAME=testtest + - INIT_PASSWORD=Qweasdyxcv!2 # folders should be generated inside container volumes: diff --git a/docs/content/advanced/config/unattended-setup.md b/docs/content/advanced/config/unattended-setup.md new file mode 100644 index 00000000..ee864efe --- /dev/null +++ b/docs/content/advanced/config/unattended-setup.md @@ -0,0 +1,32 @@ +--- +title: Unattended Setup +--- + +If you want to run the setup without any user interaction, e.g. with a tool like Ansible, you can use these environment variables to configure the setup. + +These will only be used during the first start of the container. After that, the setup will be disabled. + +| Env | Example | Description | Group | +| ---------------- | ----------------- | --------------------------------------------------------- | ----- | +| `INIT_ENABLED` | `true` | Enables the below env vars | 0 | +| `INIT_USERNAME` | `admin` | Sets admin username | 1 | +| `INIT_PASSWORD` | `Se!ureP%ssw` | Sets admin password | 1 | +| `INIT_HOST` | `vpn.example.com` | Host clients will connect to | 1 | +| `INIT_PORT` | `51820` | Port clients will connect to and wireguard will listen on | 1 | +| `INIT_DNS` | `1.1.1.1,8.8.8.8` | Sets global dns setting | 2 | +| `INIT_IPV4_CIDR` | `10.8.0.0/24` | Sets IPv4 cidr | 3 | +| `INIT_IPV6_CIDR` | `2001:0DB8::/32` | Sets IPv6 cidr | 3 | + +/// warning | Variables have to be used together + +If variables are in the same group, you have to set all of them. For example, if you set `INIT_IPV4_CIDR`, you also have to set `INIT_IPV6_CIDR`. + +If you want to skip the setup process, you have to configure group `1` +/// + +/// note | Security + +The initial username and password is not checked for complexity. Make sure to set a long enough username and a secure password. Otherwise, the user won't be able to log in. + +Its recommended to remove the variables after the setup is done to prevent the password from being exposed. +/// diff --git a/src/app/components/Base/Tooltip.vue b/src/app/components/Base/Tooltip.vue index ed01b150..80496ad0 100644 --- a/src/app/components/Base/Tooltip.vue +++ b/src/app/components/Base/Tooltip.vue @@ -1,14 +1,17 @@