Compare commits
11 Commits
2b7c846823
...
3837f45a42
Author | SHA1 | Date | |
---|---|---|---|
3837f45a42 | |||
b325ffaf09 | |||
6182bc3e03 | |||
820a9db6b2 | |||
79ed912d44 | |||
3ab24487d4 | |||
![]() |
a18a715f6f | ||
![]() |
ec202d8575 | ||
![]() |
9dd7f256ba | ||
![]() |
33e95bac5e | ||
![]() |
72fe64385e |
41
.github/workflows/codeql.yml
vendored
41
.github/workflows/codeql.yml
vendored
@ -1,41 +0,0 @@
|
|||||||
name: "CodeQL"
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ "master" ]
|
|
||||||
pull_request:
|
|
||||||
branches: [ "master" ]
|
|
||||||
schedule:
|
|
||||||
- cron: "15 0 * * *"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
analyze:
|
|
||||||
name: Analyze
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: github.repository_owner == 'wg-easy'
|
|
||||||
permissions:
|
|
||||||
actions: read
|
|
||||||
contents: read
|
|
||||||
security-events: write
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
language: [ 'javascript-typescript' ]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Initialize CodeQL
|
|
||||||
uses: github/codeql-action/init@v3
|
|
||||||
with:
|
|
||||||
languages: ${{ matrix.language }}
|
|
||||||
|
|
||||||
- name: Autobuild
|
|
||||||
uses: github/codeql-action/autobuild@v3
|
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
|
||||||
uses: github/codeql-action/analyze@v3
|
|
||||||
with:
|
|
||||||
category: "/language:${{matrix.language}}"
|
|
11
.github/workflows/deploy-development.yml
vendored
11
.github/workflows/deploy-development.yml
vendored
@ -7,7 +7,7 @@ jobs:
|
|||||||
deploy:
|
deploy:
|
||||||
name: Build & Deploy
|
name: Build & Deploy
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.repository_owner == 'wg-easy'
|
if: gitea.repository_owner == 'heckyel'
|
||||||
permissions:
|
permissions:
|
||||||
packages: write
|
packages: write
|
||||||
contents: read
|
contents: read
|
||||||
@ -22,16 +22,15 @@ jobs:
|
|||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
||||||
username: ${{ github.actor }}
|
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Build & Publish Docker Image
|
- name: Build & Publish Docker Image
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
push: true
|
push: true
|
||||||
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8
|
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8
|
||||||
tags: ghcr.io/wg-easy/wg-easy:development
|
tags: docker.io/${{ secrets.DOCKER_REGISTRY_USER }}/wg-easy:development
|
||||||
|
11
.github/workflows/deploy-nightly.yml
vendored
11
.github/workflows/deploy-nightly.yml
vendored
@ -9,7 +9,7 @@ jobs:
|
|||||||
deploy:
|
deploy:
|
||||||
name: Build & Deploy
|
name: Build & Deploy
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.repository_owner == 'wg-easy'
|
if: gitea.repository_owner == 'heckyel'
|
||||||
permissions:
|
permissions:
|
||||||
packages: write
|
packages: write
|
||||||
contents: read
|
contents: read
|
||||||
@ -24,16 +24,15 @@ jobs:
|
|||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
||||||
username: ${{ github.actor }}
|
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Build & Publish Docker Image
|
- name: Build & Publish Docker Image
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
push: true
|
push: true
|
||||||
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8
|
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8
|
||||||
tags: ghcr.io/wg-easy/wg-easy:nightly
|
tags: docker.io/${{ secrets.DOCKER_REGISTRY_USER }}/wg-easy:nightly
|
||||||
|
11
.github/workflows/deploy-pr.yml
vendored
11
.github/workflows/deploy-pr.yml
vendored
@ -8,7 +8,7 @@ jobs:
|
|||||||
deploy:
|
deploy:
|
||||||
name: Build & Deploy
|
name: Build & Deploy
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.repository_owner == 'wg-easy'
|
if: gitea.repository_owner == 'heckyel'
|
||||||
permissions:
|
permissions:
|
||||||
packages: write
|
packages: write
|
||||||
contents: read
|
contents: read
|
||||||
@ -23,16 +23,15 @@ jobs:
|
|||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
||||||
username: ${{ github.actor }}
|
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Build Docker Image
|
- name: Build Docker Image
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
push: false
|
push: false
|
||||||
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8
|
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8
|
||||||
tags: ghcr.io/wg-easy/wg-easy:pr
|
tags: docker.io/${{ secrets.DOCKER_REGISTRY_USER }}/wg-easy:pr
|
||||||
|
11
.github/workflows/deploy.yml
vendored
11
.github/workflows/deploy.yml
vendored
@ -10,7 +10,7 @@ jobs:
|
|||||||
deploy:
|
deploy:
|
||||||
name: Build & Deploy
|
name: Build & Deploy
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.repository_owner == 'wg-easy'
|
if: gitea.repository_owner == 'heckyel'
|
||||||
permissions:
|
permissions:
|
||||||
packages: write
|
packages: write
|
||||||
contents: read
|
contents: read
|
||||||
@ -25,12 +25,11 @@ jobs:
|
|||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
||||||
username: ${{ github.actor }}
|
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Set environment variables
|
- name: Set environment variables
|
||||||
run: echo RELEASE=$(cat ./src/package.json | jq -r .release | jq -r .version) >> $GITHUB_ENV
|
run: echo RELEASE=$(cat ./src/package.json | jq -r .release | jq -r .version) >> $GITHUB_ENV
|
||||||
@ -40,4 +39,4 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
push: true
|
push: true
|
||||||
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8
|
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8
|
||||||
tags: ghcr.io/wg-easy/wg-easy:latest, ghcr.io/wg-easy/wg-easy:${{ env.RELEASE }}
|
tags: docker.io/${{ secrets.DOCKER_REGISTRY_USER }}/wg-easy:latest, docker.io/${{ secrets.DOCKER_REGISTRY_USER }}/wg-easy:${{ env.RELEASE }}
|
||||||
|
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@ -11,7 +11,7 @@ jobs:
|
|||||||
lint:
|
lint:
|
||||||
name: Lint
|
name: Lint
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.repository_owner == 'wg-easy'
|
if: gitea.repository_owner == 'heckyel'
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
4
.github/workflows/npm-update-bot.yml
vendored
4
.github/workflows/npm-update-bot.yml
vendored
@ -10,12 +10,12 @@ jobs:
|
|||||||
npmupbot:
|
npmupbot:
|
||||||
name: NPM Update Bot 🤖
|
name: NPM Update Bot 🤖
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.repository_owner == 'wg-easy'
|
if: gitea.repository_owner == 'heckyel'
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
repository: wg-easy/wg-easy
|
repository: heckyel/wg-easy
|
||||||
ref: master
|
ref: master
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
|
4
.github/workflows/stale.yml
vendored
4
.github/workflows/stale.yml
vendored
@ -14,7 +14,7 @@ jobs:
|
|||||||
stale:
|
stale:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.repository_owner == 'wg-easy'
|
if: gitea.repository_owner == 'heckyel'
|
||||||
permissions:
|
permissions:
|
||||||
issues: write
|
issues: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
@ -31,5 +31,5 @@ jobs:
|
|||||||
days-before-pr-close: 14
|
days-before-pr-close: 14
|
||||||
stale-pr-message: "This PR is stale because it has been open for 30 days with no activity."
|
stale-pr-message: "This PR is stale because it has been open for 30 days with no activity."
|
||||||
close-pr-message: "This PR was closed because it has been inactive for 14 days since being marked as stale."
|
close-pr-message: "This PR was closed because it has been inactive for 14 days since being marked as stale."
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITEA_TOKEN }}
|
||||||
operations-per-run: 100
|
operations-per-run: 100
|
||||||
|
@ -34,16 +34,18 @@ RUN chmod +x /bin/wgpw
|
|||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
dpkg \
|
dpkg \
|
||||||
dumb-init \
|
dumb-init \
|
||||||
|
ip6tables \
|
||||||
iptables \
|
iptables \
|
||||||
iptables-legacy \
|
iptables-legacy \
|
||||||
wireguard-tools
|
wireguard-tools
|
||||||
|
|
||||||
# Use iptables-legacy
|
# 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
|
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
|
||||||
|
RUN update-alternatives --install /sbin/ip6tables ip6tables /sbin/ip6tables-legacy 10 --slave /sbin/ip6tables-restore ip6tables-restore /sbin/ip6tables-legacy-restore --slave /sbin/ip6tables-save ip6tables-save /sbin/ip6tables-legacy-save
|
||||||
|
|
||||||
# Set Environment
|
# Set Environment
|
||||||
ENV DEBUG=Server,WireGuard
|
ENV DEBUG=Server,WireGuard
|
||||||
|
|
||||||
# Run Web UI
|
# Run Web UI
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
CMD ["/usr/bin/dumb-init", "node", "server.js"]
|
CMD ["/usr/bin/dumb-init", "node", "server.js"]
|
||||||
|
@ -12,17 +12,17 @@
|
|||||||
To generate a bcrypt password hash using docker, run the following command :
|
To generate a bcrypt password hash using docker, run the following command :
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
docker run ghcr.io/wg-easy/wg-easy wgpw YOUR_PASSWORD
|
docker run docker.io/rusian/wg-easy wgpw YOUR_PASSWORD
|
||||||
PASSWORD_HASH='$2b$12$coPqCsPtcFO.Ab99xylBNOW4.Iu7OOA2/ZIboHN6/oyxca3MWo7fW' // literally 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 :
|
*Important* : make sure to enclose your password in **single quotes** when you run `docker run` command :
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ echo $2b$12$coPqCsPtcF
|
$ echo $2b$12$coPqCsPtcF <-- not correct
|
||||||
b2
|
b2
|
||||||
$ echo "$2b$12$coPqCsPtcF"
|
$ echo "$2b$12$coPqCsPtcF" <-- not correct
|
||||||
b2
|
b2
|
||||||
$ echo '$2b$12$coPqCsPtcF'
|
$ echo '$2b$12$coPqCsPtcF' <-- correct
|
||||||
$2b$12$coPqCsPtcF
|
$2b$12$coPqCsPtcF
|
||||||
```
|
```
|
||||||
|
776
LICENSE
776
LICENSE
@ -1,437 +1,339 @@
|
|||||||
Attribution-NonCommercial-ShareAlike 4.0 International
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 2, June 1991
|
||||||
=======================================================================
|
|
||||||
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||||
Creative Commons Corporation ("Creative Commons") is not a law firm and
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
does not provide legal services or legal advice. Distribution of
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
Creative Commons public licenses does not create a lawyer-client or
|
of this license document, but changing it is not allowed.
|
||||||
other relationship. Creative Commons makes its licenses and related
|
|
||||||
information available on an "as-is" basis. Creative Commons gives no
|
Preamble
|
||||||
warranties regarding its licenses, any material licensed under their
|
|
||||||
terms and conditions, or any related information. Creative Commons
|
The licenses for most software are designed to take away your
|
||||||
disclaims all liability for damages resulting from their use to the
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
fullest extent possible.
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
Using Creative Commons Public Licenses
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
Creative Commons public licenses provide a standard set of terms and
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
conditions that creators and other rights holders may use to share
|
the GNU Lesser General Public License instead.) You can apply it to
|
||||||
original works of authorship and other material subject to copyright
|
your programs, too.
|
||||||
and certain other rights specified in the public license below. The
|
|
||||||
following considerations are for informational purposes only, are not
|
When we speak of free software, we are referring to freedom, not
|
||||||
exhaustive, and do not form part of our licenses.
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
Considerations for licensors: Our public licenses are
|
this service if you wish), that you receive source code or can get it
|
||||||
intended for use by those authorized to give the public
|
if you want it, that you can change the software or use pieces of it
|
||||||
permission to use material in ways otherwise restricted by
|
in new free programs; and that you know you can do these things.
|
||||||
copyright and certain other rights. Our licenses are
|
|
||||||
irrevocable. Licensors should read and understand the terms
|
To protect your rights, we need to make restrictions that forbid
|
||||||
and conditions of the license they choose before applying it.
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
Licensors should also secure all rights necessary before
|
These restrictions translate to certain responsibilities for you if you
|
||||||
applying our licenses so that the public can reuse the
|
distribute copies of the software, or if you modify it.
|
||||||
material as expected. Licensors should clearly mark any
|
|
||||||
material not subject to the license. This includes other CC-
|
For example, if you distribute copies of such a program, whether
|
||||||
licensed material, or material used under an exception or
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
limitation to copyright. More considerations for licensors:
|
you have. You must make sure that they, too, receive or can get the
|
||||||
wiki.creativecommons.org/Considerations_for_licensors
|
source code. And you must show them these terms so they know their
|
||||||
|
rights.
|
||||||
Considerations for the public: By using one of our public
|
|
||||||
licenses, a licensor grants the public permission to use the
|
We protect your rights with two steps: (1) copyright the software, and
|
||||||
licensed material under specified terms and conditions. If
|
(2) offer you this license which gives you legal permission to copy,
|
||||||
the licensor's permission is not necessary for any reason--for
|
distribute and/or modify the software.
|
||||||
example, because of any applicable exception or limitation to
|
|
||||||
copyright--then that use is not regulated by the license. Our
|
Also, for each author's protection and ours, we want to make certain
|
||||||
licenses grant only permissions under copyright and certain
|
that everyone understands that there is no warranty for this free
|
||||||
other rights that a licensor has authority to grant. Use of
|
software. If the software is modified by someone else and passed on, we
|
||||||
the licensed material may still be restricted for other
|
want its recipients to know that what they have is not the original, so
|
||||||
reasons, including because others have copyright or other
|
that any problems introduced by others will not reflect on the original
|
||||||
rights in the material. A licensor may make special requests,
|
authors' reputations.
|
||||||
such as asking that all changes be marked or described.
|
|
||||||
Although not required by our licenses, you are encouraged to
|
Finally, any free program is threatened constantly by software
|
||||||
respect those requests where reasonable. More considerations
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
for the public:
|
program will individually obtain patent licenses, in effect making the
|
||||||
wiki.creativecommons.org/Considerations_for_licensees
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
=======================================================================
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
|
modification follow.
|
||||||
Public License
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
By exercising the Licensed Rights (defined below), You accept and agree
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
to be bound by the terms and conditions of this Creative Commons
|
|
||||||
Attribution-NonCommercial-ShareAlike 4.0 International Public License
|
0. This License applies to any program or other work which contains
|
||||||
("Public License"). To the extent this Public License may be
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
interpreted as a contract, You are granted the Licensed Rights in
|
under the terms of this General Public License. The "Program", below,
|
||||||
consideration of Your acceptance of these terms and conditions, and the
|
refers to any such program or work, and a "work based on the Program"
|
||||||
Licensor grants You such rights in consideration of benefits the
|
means either the Program or any derivative work under copyright law:
|
||||||
Licensor receives from making the Licensed Material available under
|
that is to say, a work containing the Program or a portion of it,
|
||||||
these terms and conditions.
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term "modification".) Each licensee is addressed as "you".
|
||||||
Section 1 -- Definitions.
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
a. Adapted Material means material subject to Copyright and Similar
|
covered by this License; they are outside its scope. The act of
|
||||||
Rights that is derived from or based upon the Licensed Material
|
running the Program is not restricted, and the output from the Program
|
||||||
and in which the Licensed Material is translated, altered,
|
is covered only if its contents constitute a work based on the
|
||||||
arranged, transformed, or otherwise modified in a manner requiring
|
Program (independent of having been made by running the Program).
|
||||||
permission under the Copyright and Similar Rights held by the
|
Whether that is true depends on what the Program does.
|
||||||
Licensor. For purposes of this Public License, where the Licensed
|
|
||||||
Material is a musical work, performance, or sound recording,
|
1. You may copy and distribute verbatim copies of the Program's
|
||||||
Adapted Material is always produced where the Licensed Material is
|
source code as you receive it, in any medium, provided that you
|
||||||
synched in timed relation with a moving image.
|
conspicuously and appropriately publish on each copy an appropriate
|
||||||
|
copyright notice and disclaimer of warranty; keep intact all the
|
||||||
b. Adapter's License means the license You apply to Your Copyright
|
notices that refer to this License and to the absence of any warranty;
|
||||||
and Similar Rights in Your contributions to Adapted Material in
|
and give any other recipients of the Program a copy of this License
|
||||||
accordance with the terms and conditions of this Public License.
|
along with the Program.
|
||||||
|
|
||||||
c. BY-NC-SA Compatible License means a license listed at
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
creativecommons.org/compatiblelicenses, approved by Creative
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
Commons as essentially the equivalent of this Public License.
|
|
||||||
|
2. You may modify your copy or copies of the Program or any portion
|
||||||
d. Copyright and Similar Rights means copyright and/or similar rights
|
of it, thus forming a work based on the Program, and copy and
|
||||||
closely related to copyright including, without limitation,
|
distribute such modifications or work under the terms of Section 1
|
||||||
performance, broadcast, sound recording, and Sui Generis Database
|
above, provided that you also meet all of these conditions:
|
||||||
Rights, without regard to how the rights are labeled or
|
|
||||||
categorized. For purposes of this Public License, the rights
|
a) You must cause the modified files to carry prominent notices
|
||||||
specified in Section 2(b)(1)-(2) are not Copyright and Similar
|
stating that you changed the files and the date of any change.
|
||||||
Rights.
|
|
||||||
|
b) You must cause any work that you distribute or publish, that in
|
||||||
e. Effective Technological Measures means those measures that, in the
|
whole or in part contains or is derived from the Program or any
|
||||||
absence of proper authority, may not be circumvented under laws
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
fulfilling obligations under Article 11 of the WIPO Copyright
|
parties under the terms of this License.
|
||||||
Treaty adopted on December 20, 1996, and/or similar international
|
|
||||||
agreements.
|
c) If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
f. Exceptions and Limitations means fair use, fair dealing, and/or
|
interactive use in the most ordinary way, to print or display an
|
||||||
any other exception or limitation to Copyright and Similar Rights
|
announcement including an appropriate copyright notice and a
|
||||||
that applies to Your use of the Licensed Material.
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
g. License Elements means the license attributes listed in the name
|
these conditions, and telling the user how to view a copy of this
|
||||||
of a Creative Commons Public License. The License Elements of this
|
License. (Exception: if the Program itself is interactive but
|
||||||
Public License are Attribution, NonCommercial, and ShareAlike.
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
h. Licensed Material means the artistic or literary work, database,
|
|
||||||
or other material to which the Licensor applied this Public
|
These requirements apply to the modified work as a whole. If
|
||||||
License.
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
i. Licensed Rights means the rights granted to You subject to the
|
themselves, then this License, and its terms, do not apply to those
|
||||||
terms and conditions of this Public License, which are limited to
|
sections when you distribute them as separate works. But when you
|
||||||
all Copyright and Similar Rights that apply to Your use of the
|
distribute the same sections as part of a whole which is a work based
|
||||||
Licensed Material and that the Licensor has authority to license.
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
j. Licensor means the individual(s) or entity(ies) granting rights
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
under this Public License.
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
k. NonCommercial means not primarily intended for or directed towards
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
commercial advantage or monetary compensation. For purposes of
|
exercise the right to control the distribution of derivative or
|
||||||
this Public License, the exchange of the Licensed Material for
|
collective works based on the Program.
|
||||||
other material subject to Copyright and Similar Rights by digital
|
|
||||||
file-sharing or similar means is NonCommercial provided there is
|
In addition, mere aggregation of another work not based on the Program
|
||||||
no payment of monetary compensation in connection with the
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
exchange.
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
l. Share means to provide material to the public by any means or
|
|
||||||
process that requires permission under the Licensed Rights, such
|
3. You may copy and distribute the Program (or a work based on it,
|
||||||
as reproduction, public display, public performance, distribution,
|
under Section 2) in object code or executable form under the terms of
|
||||||
dissemination, communication, or importation, and to make material
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
available to the public including in ways that members of the
|
|
||||||
public may access the material from a place and at a time
|
a) Accompany it with the complete corresponding machine-readable
|
||||||
individually chosen by them.
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
m. Sui Generis Database Rights means rights other than copyright
|
|
||||||
resulting from Directive 96/9/EC of the European Parliament and of
|
b) Accompany it with a written offer, valid for at least three
|
||||||
the Council of 11 March 1996 on the legal protection of databases,
|
years, to give any third party, for a charge no more than your
|
||||||
as amended and/or succeeded, as well as other essentially
|
cost of physically performing source distribution, a complete
|
||||||
equivalent rights anywhere in the world.
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
n. You means the individual or entity exercising the Licensed Rights
|
customarily used for software interchange; or,
|
||||||
under this Public License. Your has a corresponding meaning.
|
|
||||||
|
c) Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
Section 2 -- Scope.
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
a. License grant.
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
1. Subject to the terms and conditions of this Public License,
|
The source code for a work means the preferred form of the work for
|
||||||
the Licensor hereby grants You a worldwide, royalty-free,
|
making modifications to it. For an executable work, complete source
|
||||||
non-sublicensable, non-exclusive, irrevocable license to
|
code means all the source code for all modules it contains, plus any
|
||||||
exercise the Licensed Rights in the Licensed Material to:
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
a. reproduce and Share the Licensed Material, in whole or
|
special exception, the source code distributed need not include
|
||||||
in part, for NonCommercial purposes only; and
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
b. produce, reproduce, and Share Adapted Material for
|
operating system on which the executable runs, unless that component
|
||||||
NonCommercial purposes only.
|
itself accompanies the executable.
|
||||||
|
|
||||||
2. Exceptions and Limitations. For the avoidance of doubt, where
|
If distribution of executable or object code is made by offering
|
||||||
Exceptions and Limitations apply to Your use, this Public
|
access to copy from a designated place, then offering equivalent
|
||||||
License does not apply, and You do not need to comply with
|
access to copy the source code from the same place counts as
|
||||||
its terms and conditions.
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
3. Term. The term of this Public License is specified in Section
|
|
||||||
6(a).
|
4. You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
4. Media and formats; technical modifications allowed. The
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
Licensor authorizes You to exercise the Licensed Rights in
|
void, and will automatically terminate your rights under this License.
|
||||||
all media and formats whether now known or hereafter created,
|
However, parties who have received copies, or rights, from you under
|
||||||
and to make technical modifications necessary to do so. The
|
this License will not have their licenses terminated so long as such
|
||||||
Licensor waives and/or agrees not to assert any right or
|
parties remain in full compliance.
|
||||||
authority to forbid You from making technical modifications
|
|
||||||
necessary to exercise the Licensed Rights, including
|
5. You are not required to accept this License, since you have not
|
||||||
technical modifications necessary to circumvent Effective
|
signed it. However, nothing else grants you permission to modify or
|
||||||
Technological Measures. For purposes of this Public License,
|
distribute the Program or its derivative works. These actions are
|
||||||
simply making modifications authorized by this Section 2(a)
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
(4) never produces Adapted Material.
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
5. Downstream recipients.
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
a. Offer from the Licensor -- Licensed Material. Every
|
|
||||||
recipient of the Licensed Material automatically
|
6. Each time you redistribute the Program (or any work based on the
|
||||||
receives an offer from the Licensor to exercise the
|
Program), the recipient automatically receives a license from the
|
||||||
Licensed Rights under the terms and conditions of this
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
Public License.
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
b. Additional offer from the Licensor -- Adapted Material.
|
You are not responsible for enforcing compliance by third parties to
|
||||||
Every recipient of Adapted Material from You
|
this License.
|
||||||
automatically receives an offer from the Licensor to
|
|
||||||
exercise the Licensed Rights in the Adapted Material
|
7. If, as a consequence of a court judgment or allegation of patent
|
||||||
under the conditions of the Adapter's License You apply.
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
c. No downstream restrictions. You may not offer or impose
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
any additional or different terms or conditions on, or
|
excuse you from the conditions of this License. If you cannot
|
||||||
apply any Effective Technological Measures to, the
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
Licensed Material if doing so restricts exercise of the
|
License and any other pertinent obligations, then as a consequence you
|
||||||
Licensed Rights by any recipient of the Licensed
|
may not distribute the Program at all. For example, if a patent
|
||||||
Material.
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
6. No endorsement. Nothing in this Public License constitutes or
|
the only way you could satisfy both it and this License would be to
|
||||||
may be construed as permission to assert or imply that You
|
refrain entirely from distribution of the Program.
|
||||||
are, or that Your use of the Licensed Material is, connected
|
|
||||||
with, or sponsored, endorsed, or granted official status by,
|
If any portion of this section is held invalid or unenforceable under
|
||||||
the Licensor or others designated to receive attribution as
|
any particular circumstance, the balance of the section is intended to
|
||||||
provided in Section 3(a)(1)(A)(i).
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
b. Other rights.
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
1. Moral rights, such as the right of integrity, are not
|
patents or other property right claims or to contest validity of any
|
||||||
licensed under this Public License, nor are publicity,
|
such claims; this section has the sole purpose of protecting the
|
||||||
privacy, and/or other similar personality rights; however, to
|
integrity of the free software distribution system, which is
|
||||||
the extent possible, the Licensor waives and/or agrees not to
|
implemented by public license practices. Many people have made
|
||||||
assert any such rights held by the Licensor to the limited
|
generous contributions to the wide range of software distributed
|
||||||
extent necessary to allow You to exercise the Licensed
|
through that system in reliance on consistent application of that
|
||||||
Rights, but not otherwise.
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
2. Patent and trademark rights are not licensed under this
|
impose that choice.
|
||||||
Public License.
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
3. To the extent possible, the Licensor waives any right to
|
be a consequence of the rest of this License.
|
||||||
collect royalties from You for the exercise of the Licensed
|
|
||||||
Rights, whether directly or through a collecting society
|
8. If the distribution and/or use of the Program is restricted in
|
||||||
under any voluntary or waivable statutory or compulsory
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
licensing scheme. In all other cases the Licensor expressly
|
original copyright holder who places the Program under this License
|
||||||
reserves any right to collect such royalties, including when
|
may add an explicit geographical distribution limitation excluding
|
||||||
the Licensed Material is used other than for NonCommercial
|
those countries, so that distribution is permitted only in or among
|
||||||
purposes.
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
Section 3 -- License Conditions.
|
9. The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the General Public License from time to time. Such new versions will
|
||||||
Your exercise of the Licensed Rights is expressly made subject to the
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
following conditions.
|
address new problems or concerns.
|
||||||
|
|
||||||
a. Attribution.
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies a version number of this License which applies to it and "any
|
||||||
1. If You Share the Licensed Material (including in modified
|
later version", you have the option of following the terms and conditions
|
||||||
form), You must:
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
a. retain the following if it is supplied by the Licensor
|
this License, you may choose any version ever published by the Free Software
|
||||||
with the Licensed Material:
|
Foundation.
|
||||||
|
|
||||||
i. identification of the creator(s) of the Licensed
|
10. If you wish to incorporate parts of the Program into other free
|
||||||
Material and any others designated to receive
|
programs whose distribution conditions are different, write to the author
|
||||||
attribution, in any reasonable manner requested by
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
the Licensor (including by pseudonym if
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
designated);
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
ii. a copyright notice;
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
iii. a notice that refers to this Public License;
|
NO WARRANTY
|
||||||
|
|
||||||
iv. a notice that refers to the disclaimer of
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
warranties;
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||||
v. a URI or hyperlink to the Licensed Material to the
|
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||||
extent reasonably practicable;
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||||
b. indicate if You modified the Licensed Material and
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||||
retain an indication of any previous modifications; and
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||||
|
REPAIR OR CORRECTION.
|
||||||
c. indicate the Licensed Material is licensed under this
|
|
||||||
Public License, and include the text of, or the URI or
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
hyperlink to, this Public License.
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
2. You may satisfy the conditions in Section 3(a)(1) in any
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||||
reasonable manner based on the medium, means, and context in
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||||
which You Share the Licensed Material. For example, it may be
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||||
reasonable to satisfy the conditions by providing a URI or
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||||
hyperlink to a resource that includes the required
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
information.
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
3. If requested by the Licensor, You must remove any of the
|
|
||||||
information required by Section 3(a)(1)(A) to the extent
|
END OF TERMS AND CONDITIONS
|
||||||
reasonably practicable.
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
b. ShareAlike.
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
In addition to the conditions in Section 3(a), if You Share
|
possible use to the public, the best way to achieve this is to make it
|
||||||
Adapted Material You produce, the following conditions also apply.
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
1. The Adapter's License You apply must be a Creative Commons
|
To do so, attach the following notices to the program. It is safest
|
||||||
license with the same License Elements, this version or
|
to attach them to the start of each source file to most effectively
|
||||||
later, or a BY-NC-SA Compatible License.
|
convey the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
2. You must include the text of, or the URI or hyperlink to, the
|
|
||||||
Adapter's License You apply. You may satisfy this condition
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
in any reasonable manner based on the medium, means, and
|
Copyright (C) <year> <name of author>
|
||||||
context in which You Share Adapted Material.
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
3. You may not offer or impose any additional or different terms
|
it under the terms of the GNU General Public License as published by
|
||||||
or conditions on, or apply any Effective Technological
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
Measures to, Adapted Material that restrict exercise of the
|
(at your option) any later version.
|
||||||
rights granted under the Adapter's License You apply.
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
Section 4 -- Sui Generis Database Rights.
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
Where the Licensed Rights include Sui Generis Database Rights that
|
|
||||||
apply to Your use of the Licensed Material:
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
to extract, reuse, reproduce, and Share all or a substantial
|
|
||||||
portion of the contents of the database for NonCommercial purposes
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
only;
|
|
||||||
|
If the program is interactive, make it output a short notice like this
|
||||||
b. if You include all or a substantial portion of the database
|
when it starts in an interactive mode:
|
||||||
contents in a database in which You have Sui Generis Database
|
|
||||||
Rights, then the database in which You have Sui Generis Database
|
Gnomovision version 69, Copyright (C) year name of author
|
||||||
Rights (but not its individual contents) is Adapted Material,
|
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
including for purposes of Section 3(b); and
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
c. You must comply with the conditions in Section 3(a) if You Share
|
|
||||||
all or a substantial portion of the contents of the database.
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, the commands you use may
|
||||||
For the avoidance of doubt, this Section 4 supplements and does not
|
be called something other than `show w' and `show c'; they could even be
|
||||||
replace Your obligations under this Public License where the Licensed
|
mouse-clicks or menu items--whatever suits your program.
|
||||||
Rights include other Copyright and Similar Rights.
|
|
||||||
|
You should also get your employer (if you work as a programmer) or your
|
||||||
|
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||||
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
|
necessary. Here is a sample; alter the names:
|
||||||
|
|
||||||
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||||
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
|
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||||
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
|
|
||||||
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
|
<signature of Ty Coon>, 1 April 1989
|
||||||
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
|
Ty Coon, President of Vice
|
||||||
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
||||||
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
|
This General Public License does not permit incorporating your program into
|
||||||
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
|
proprietary programs. If your program is a subroutine library, you may
|
||||||
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
|
consider it more useful to permit linking proprietary applications with the
|
||||||
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
|
library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License.
|
||||||
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
|
|
||||||
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
|
|
||||||
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
|
|
||||||
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
|
|
||||||
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
|
|
||||||
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
|
|
||||||
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
|
|
||||||
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
|
|
||||||
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
|
|
||||||
|
|
||||||
c. The disclaimer of warranties and limitation of liability provided
|
|
||||||
above shall be interpreted in a manner that, to the extent
|
|
||||||
possible, most closely approximates an absolute disclaimer and
|
|
||||||
waiver of all liability.
|
|
||||||
|
|
||||||
|
|
||||||
Section 6 -- Term and Termination.
|
|
||||||
|
|
||||||
a. This Public License applies for the term of the Copyright and
|
|
||||||
Similar Rights licensed here. However, if You fail to comply with
|
|
||||||
this Public License, then Your rights under this Public License
|
|
||||||
terminate automatically.
|
|
||||||
|
|
||||||
b. Where Your right to use the Licensed Material has terminated under
|
|
||||||
Section 6(a), it reinstates:
|
|
||||||
|
|
||||||
1. automatically as of the date the violation is cured, provided
|
|
||||||
it is cured within 30 days of Your discovery of the
|
|
||||||
violation; or
|
|
||||||
|
|
||||||
2. upon express reinstatement by the Licensor.
|
|
||||||
|
|
||||||
For the avoidance of doubt, this Section 6(b) does not affect any
|
|
||||||
right the Licensor may have to seek remedies for Your violations
|
|
||||||
of this Public License.
|
|
||||||
|
|
||||||
c. For the avoidance of doubt, the Licensor may also offer the
|
|
||||||
Licensed Material under separate terms or conditions or stop
|
|
||||||
distributing the Licensed Material at any time; however, doing so
|
|
||||||
will not terminate this Public License.
|
|
||||||
|
|
||||||
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
|
|
||||||
License.
|
|
||||||
|
|
||||||
|
|
||||||
Section 7 -- Other Terms and Conditions.
|
|
||||||
|
|
||||||
a. The Licensor shall not be bound by any additional or different
|
|
||||||
terms or conditions communicated by You unless expressly agreed.
|
|
||||||
|
|
||||||
b. Any arrangements, understandings, or agreements regarding the
|
|
||||||
Licensed Material not stated herein are separate from and
|
|
||||||
independent of the terms and conditions of this Public License.
|
|
||||||
|
|
||||||
|
|
||||||
Section 8 -- Interpretation.
|
|
||||||
|
|
||||||
a. For the avoidance of doubt, this Public License does not, and
|
|
||||||
shall not be interpreted to, reduce, limit, restrict, or impose
|
|
||||||
conditions on any use of the Licensed Material that could lawfully
|
|
||||||
be made without permission under this Public License.
|
|
||||||
|
|
||||||
b. To the extent possible, if any provision of this Public License is
|
|
||||||
deemed unenforceable, it shall be automatically reformed to the
|
|
||||||
minimum extent necessary to make it enforceable. If the provision
|
|
||||||
cannot be reformed, it shall be severed from this Public License
|
|
||||||
without affecting the enforceability of the remaining terms and
|
|
||||||
conditions.
|
|
||||||
|
|
||||||
c. No term or condition of this Public License will be waived and no
|
|
||||||
failure to comply consented to unless expressly agreed to by the
|
|
||||||
Licensor.
|
|
||||||
|
|
||||||
d. Nothing in this Public License constitutes or may be interpreted
|
|
||||||
as a limitation upon, or waiver of, any privileges and immunities
|
|
||||||
that apply to the Licensor or You, including from the legal
|
|
||||||
processes of any jurisdiction or authority.
|
|
||||||
|
|
||||||
=======================================================================
|
|
||||||
|
|
||||||
Creative Commons is not a party to its public
|
|
||||||
licenses. Notwithstanding, Creative Commons may elect to apply one of
|
|
||||||
its public licenses to material it publishes and in those instances
|
|
||||||
will be considered the “Licensor.” The text of the Creative Commons
|
|
||||||
public licenses is dedicated to the public domain under the CC0 Public
|
|
||||||
Domain Dedication. Except for the limited purpose of indicating that
|
|
||||||
material is shared under a Creative Commons public license or as
|
|
||||||
otherwise permitted by the Creative Commons policies published at
|
|
||||||
creativecommons.org/policies, Creative Commons does not authorize the
|
|
||||||
use of the trademark "Creative Commons" or any other trademark or logo
|
|
||||||
of Creative Commons without its prior written consent including,
|
|
||||||
without limitation, in connection with any unauthorized modifications
|
|
||||||
to any of its public licenses or any other arrangements,
|
|
||||||
understandings, or agreements concerning use of licensed material. For
|
|
||||||
the avoidance of doubt, this paragraph does not form part of the
|
|
||||||
public licenses.
|
|
||||||
|
|
||||||
Creative Commons may be contacted at creativecommons.org.
|
|
||||||
|
20
README.md
20
README.md
@ -37,10 +37,10 @@ For **stable** versions instead of nightly or development please read **README**
|
|||||||
|
|
||||||
| tag | Branch | Example | Description |
|
| tag | Branch | Example | Description |
|
||||||
| - | - | - | - |
|
| - | - | - | - |
|
||||||
| `latest` | production | `ghcr.io/wg-easy/wg-easy:latest` or `ghcr.io/wg-easy/wg-easy` | stable as possbile get bug fixes quickly when needed, deployed against `production`. |
|
| `latest` | production | `docker.io/rusian/wg-easy:latest` or `docker.io/rusian/wg-easy` | stable as possbile get bug fixes quickly when needed, deployed against `production`. |
|
||||||
| `13` | production | `ghcr.io/wg-easy/wg-easy:13` | same as latest, stick to a version tag. |
|
| `13` | production | `docker.io/rusian/wg-easy:13` | same as latest, stick to a version tag. |
|
||||||
| `nightly` | master | `ghcr.io/wg-easy/wg-easy:nightly` | mostly unstable gets frequent package and code updates, deployed against `master`. |
|
| `nightly` | master | `docker.io/rusian/wg-easy:nightly` | mostly unstable gets frequent package and code updates, deployed against `master`. |
|
||||||
| `development` | pull requests | `ghcr.io/wg-easy/wg-easy:development` | used for development, testing code from PRs before landing into `master`. |
|
| `development` | pull requests | `docker.io/rusian/wg-easy:development` | used for development, testing code from PRs before landing into `master`. |
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
@ -71,12 +71,13 @@ To automatically install & run wg-easy, simply run:
|
|||||||
-v ~/.wg-easy:/etc/wireguard \
|
-v ~/.wg-easy:/etc/wireguard \
|
||||||
-p 51820:51820/udp \
|
-p 51820:51820/udp \
|
||||||
-p 51821:51821/tcp \
|
-p 51821:51821/tcp \
|
||||||
|
--privileged=true \
|
||||||
--cap-add=NET_ADMIN \
|
--cap-add=NET_ADMIN \
|
||||||
--cap-add=SYS_MODULE \
|
--cap-add=SYS_MODULE \
|
||||||
--sysctl="net.ipv4.conf.all.src_valid_mark=1" \
|
--sysctl="net.ipv4.conf.all.src_valid_mark=1" \
|
||||||
--sysctl="net.ipv4.ip_forward=1" \
|
--sysctl="net.ipv4.ip_forward=1" \
|
||||||
--restart unless-stopped \
|
--restart unless-stopped \
|
||||||
ghcr.io/wg-easy/wg-easy
|
docker.io/rusian/wg-easy
|
||||||
```
|
```
|
||||||
|
|
||||||
> 💡 Replace `YOUR_SERVER_IP` with your WAN IP, or a Dynamic DNS hostname.
|
> 💡 Replace `YOUR_SERVER_IP` with your WAN IP, or a Dynamic DNS hostname.
|
||||||
@ -107,11 +108,14 @@ These options can be configured by setting environment variables using `-e KEY="
|
|||||||
| `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 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. |
|
| `WG_PORT` | `51820` | `12345` | The public UDP port of your VPN server. WireGuard will listen on that (othwise default) inside the Docker container. |
|
||||||
| `WG_CONFIG_PORT`| `51820` | `12345` | The UDP port used on [Home Assistant Plugin](https://github.com/adriy-be/homeassistant-addons-jdeath/tree/main/wgeasy)
|
| `WG_CONFIG_PORT`| `51820` | `12345` | The UDP port used on [Home Assistant Plugin](https://github.com/adriy-be/homeassistant-addons-jdeath/tree/main/wgeasy)
|
||||||
| `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_SRV_MTU` | `1420` | `1384` | The MTU the Server will use. |
|
||||||
| `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. |
|
||||||
| `WG_DEFAULT_DNS` | `1.1.1.1` | `8.8.8.8, 8.8.4.4` | DNS server clients will use. If set to blank value, clients will not use any DNS. |
|
| `WG_DEFAULT_ADDRESS6` | `fdcc:ad94:bacf:61a4::cafe:x` | `fdcc:ad94:bacf:61a4::42:x` | Clients IPv6 address range. Has to be a valid IPv6 ULA address. |
|
||||||
|
| `WG_DEFAULT_DNS` | `84.200.69.80` | `84.200.69.80, 84.200.70.40` | DNS server clients will use. If set to blank value, clients will not use any DNS. |
|
||||||
|
| `WG_DEFAULT_DNS6` | `2001:1608:10:25::1c04:b12f` | `2001:1608:10:25::1c04:b12f, 2001:1608:10:25::9249:d69b` | DNSv6 server clients will use. |
|
||||||
| `WG_ALLOWED_IPS` | `0.0.0.0/0, ::/0` | `192.168.15.0/24, 10.0.1.0/24` | Allowed IPs clients will use. |
|
| `WG_ALLOWED_IPS` | `0.0.0.0/0, ::/0` | `192.168.15.0/24, 10.0.1.0/24` | Allowed IPs clients will use. |
|
||||||
| `WG_PRE_UP` | `...` | - | See [config.js](https://github.com/wg-easy/wg-easy/blob/master/src/config.js#L19) for the default value. |
|
| `WG_PRE_UP` | `...` | - | See [config.js](https://github.com/wg-easy/wg-easy/blob/master/src/config.js#L19) for the default value. |
|
||||||
| `WG_POST_UP` | `...` | `iptables ...` | See [config.js](https://github.com/wg-easy/wg-easy/blob/master/src/config.js#L20) for the default value. |
|
| `WG_POST_UP` | `...` | `iptables ...` | See [config.js](https://github.com/wg-easy/wg-easy/blob/master/src/config.js#L20) for the default value. |
|
||||||
@ -130,7 +134,7 @@ To update to the latest version, simply run:
|
|||||||
```bash
|
```bash
|
||||||
docker stop wg-easy
|
docker stop wg-easy
|
||||||
docker rm wg-easy
|
docker rm wg-easy
|
||||||
docker pull ghcr.io/wg-easy/wg-easy
|
docker pull docker.io/rusian/wg-easy
|
||||||
```
|
```
|
||||||
|
|
||||||
And then run the `docker run -d \ ...` command above again.
|
And then run the `docker run -d \ ...` command above again.
|
||||||
|
@ -12,13 +12,16 @@ services:
|
|||||||
- WG_HOST=raspberrypi.local
|
- WG_HOST=raspberrypi.local
|
||||||
|
|
||||||
# Optional:
|
# Optional:
|
||||||
# - PASSWORD_HASH=$$2y$$10$$hBCoykrB95WSzuV4fafBzOHWKu9sbyVa34GJr8VV5R/pIelfEMYyG (needs double $$, hash of 'foobar123'; see "How_to_generate_an_bcrypt_hash.md" for generate the hash)
|
# - PASSWORD_HASH='$2y$10$hBCoykrB95WSzuV4fafBzOHWKu9sbyVa34GJr8VV5R/pIelfEMYyG' (hash of 'foobar123'; see "How_to_generate_an_bcrypt_hash.md" for generate the hash)
|
||||||
# - PORT=51821
|
# - PORT=51821
|
||||||
# - WG_PORT=51820
|
# - WG_PORT=51820
|
||||||
# - WG_CONFIG_PORT=92820
|
# - WG_CONFIG_PORT=92820
|
||||||
# - WG_DEFAULT_ADDRESS=10.8.0.x
|
# - WG_DEFAULT_ADDRESS=10.8.0.x
|
||||||
# - WG_DEFAULT_DNS=1.1.1.1
|
# - WG_DEFAULT_ADDRESS6=fdcc:ad94:bacf:61a4::cafe:x
|
||||||
|
# - WG_DEFAULT_DNS=84.200.69.80
|
||||||
|
# - WG_DEFAULT_DNS6=2001:1608:10:25::1c04:b12f
|
||||||
# - WG_MTU=1420
|
# - WG_MTU=1420
|
||||||
|
# - WG_SRV_MTU=1420
|
||||||
# - WG_ALLOWED_IPS=192.168.15.0/24, 10.0.1.0/24
|
# - WG_ALLOWED_IPS=192.168.15.0/24, 10.0.1.0/24
|
||||||
# - WG_PERSISTENT_KEEPALIVE=25
|
# - WG_PERSISTENT_KEEPALIVE=25
|
||||||
# - WG_PRE_UP=echo "Pre Up" > /etc/wireguard/pre-up.txt
|
# - WG_PRE_UP=echo "Pre Up" > /etc/wireguard/pre-up.txt
|
||||||
@ -28,18 +31,36 @@ services:
|
|||||||
# - UI_TRAFFIC_STATS=true
|
# - UI_TRAFFIC_STATS=true
|
||||||
# - UI_CHART_TYPE=0 # (0 Charts disabled, 1 # Line chart, 2 # Area chart, 3 # Bar chart)
|
# - UI_CHART_TYPE=0 # (0 Charts disabled, 1 # Line chart, 2 # Area chart, 3 # Bar chart)
|
||||||
|
|
||||||
image: ghcr.io/wg-easy/wg-easy
|
image: docker.io/rusian/wg-easy
|
||||||
container_name: wg-easy
|
container_name: wg-easy
|
||||||
|
networks:
|
||||||
|
wg:
|
||||||
|
ipv4_address: 10.42.42.42
|
||||||
|
ipv6_address: fdcc:ad94:bacf:61a3::2a
|
||||||
volumes:
|
volumes:
|
||||||
- etc_wireguard:/etc/wireguard
|
- etc_wireguard:/etc/wireguard
|
||||||
ports:
|
ports:
|
||||||
- "51820:51820/udp"
|
- "51820:51820/udp"
|
||||||
- "51821:51821/tcp"
|
- "51821:51821/tcp"
|
||||||
|
privileged: true
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
cap_add:
|
cap_add:
|
||||||
- NET_ADMIN
|
- NET_ADMIN
|
||||||
- SYS_MODULE
|
- SYS_MODULE
|
||||||
# - NET_RAW # ⚠️ Uncomment if using Podman
|
# - NET_RAW # ⚠️ Uncomment if using Podman
|
||||||
sysctls:
|
sysctls:
|
||||||
- net.ipv4.ip_forward=1
|
- net.ipv4.ip_forward=1
|
||||||
- net.ipv4.conf.all.src_valid_mark=1
|
- net.ipv4.conf.all.src_valid_mark=1
|
||||||
|
- net.ipv6.conf.all.disable_ipv6=0
|
||||||
|
- net.ipv6.conf.all.forwarding=1
|
||||||
|
- net.ipv6.conf.default.forwarding=1
|
||||||
|
|
||||||
|
networks:
|
||||||
|
wg:
|
||||||
|
driver: bridge
|
||||||
|
enable_ipv6: true
|
||||||
|
ipam:
|
||||||
|
driver: default
|
||||||
|
config:
|
||||||
|
- subnet: 10.42.42.0/24
|
||||||
|
- subnet: fdcc:ad94:bacf:61a3::/64
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
const childProcess = require('child_process');
|
||||||
const { release: { version } } = require('./package.json');
|
const { release: { version } } = require('./package.json');
|
||||||
|
|
||||||
module.exports.RELEASE = version;
|
module.exports.RELEASE = version;
|
||||||
@ -12,28 +13,64 @@ module.exports.WG_HOST = process.env.WG_HOST;
|
|||||||
module.exports.WG_PORT = process.env.WG_PORT || '51820';
|
module.exports.WG_PORT = process.env.WG_PORT || '51820';
|
||||||
module.exports.WG_CONFIG_PORT = process.env.WG_CONFIG_PORT || process.env.WG_PORT || '51820';
|
module.exports.WG_CONFIG_PORT = process.env.WG_CONFIG_PORT || process.env.WG_PORT || '51820';
|
||||||
module.exports.WG_MTU = process.env.WG_MTU || null;
|
module.exports.WG_MTU = process.env.WG_MTU || null;
|
||||||
|
module.exports.WG_SRV_MTU = process.env.WG_SRV_MTU || '1420';
|
||||||
module.exports.WG_PERSISTENT_KEEPALIVE = process.env.WG_PERSISTENT_KEEPALIVE || '0';
|
module.exports.WG_PERSISTENT_KEEPALIVE = process.env.WG_PERSISTENT_KEEPALIVE || '0';
|
||||||
module.exports.WG_DEFAULT_ADDRESS = process.env.WG_DEFAULT_ADDRESS || '10.8.0.x';
|
module.exports.WG_DEFAULT_ADDRESS = process.env.WG_DEFAULT_ADDRESS || '10.8.0.x';
|
||||||
|
module.exports.WG_DEFAULT_ADDRESS6 = process.env.WG_DEFAULT_ADDRESS6 || 'fdcc:ad94:bacf:61a4::cafe:x';
|
||||||
module.exports.WG_DEFAULT_DNS = typeof process.env.WG_DEFAULT_DNS === 'string'
|
module.exports.WG_DEFAULT_DNS = typeof process.env.WG_DEFAULT_DNS === 'string'
|
||||||
? process.env.WG_DEFAULT_DNS
|
? process.env.WG_DEFAULT_DNS
|
||||||
: '1.1.1.1';
|
: '84.200.69.80';
|
||||||
|
module.exports.WG_DEFAULT_DNS6 = typeof process.env.WG_DEFAULT_DNS6 === 'string'
|
||||||
|
? process.env.WG_DEFAULT_DNS6
|
||||||
|
: '2001:1608:10:25::1c04:b12f';
|
||||||
module.exports.WG_ALLOWED_IPS = process.env.WG_ALLOWED_IPS || '0.0.0.0/0, ::/0';
|
module.exports.WG_ALLOWED_IPS = process.env.WG_ALLOWED_IPS || '0.0.0.0/0, ::/0';
|
||||||
|
|
||||||
|
// Set WG_POST_UP to allow IPv6 NAT and forwarding only if the required kernel module is available
|
||||||
|
const modules = childProcess.execSync('lsmod', {
|
||||||
|
shell: 'bash',
|
||||||
|
});
|
||||||
module.exports.WG_PRE_UP = process.env.WG_PRE_UP || '';
|
module.exports.WG_PRE_UP = process.env.WG_PRE_UP || '';
|
||||||
module.exports.WG_POST_UP = process.env.WG_POST_UP || `
|
module.exports.WG_POST_UP = process.env.WG_POST_UP;
|
||||||
iptables -t nat -A POSTROUTING -s ${module.exports.WG_DEFAULT_ADDRESS.replace('x', '0')}/24 -o ${module.exports.WG_DEVICE} -j MASQUERADE;
|
if (!process.env.WG_POST_UP) {
|
||||||
iptables -A INPUT -p udp -m udp --dport ${module.exports.WG_PORT} -j ACCEPT;
|
module.exports.WG_POST_UP = `
|
||||||
iptables -A FORWARD -i wg0 -j ACCEPT;
|
iptables -t nat -A POSTROUTING -s ${module.exports.WG_DEFAULT_ADDRESS.replace('x', '0')}/24 -o ${module.exports.WG_DEVICE} -j MASQUERADE;
|
||||||
iptables -A FORWARD -o wg0 -j ACCEPT;
|
iptables -A INPUT -p udp -m udp --dport ${module.exports.WG_PORT} -j ACCEPT;
|
||||||
`.split('\n').join(' ');
|
iptables -A FORWARD -i wg0 -o wg0 -j REJECT;
|
||||||
|
iptables -A FORWARD -i wg0 -j ACCEPT;
|
||||||
|
iptables -A FORWARD -o wg0 -j ACCEPT;`;
|
||||||
|
|
||||||
|
if (modules.includes('ip6table_nat')) {
|
||||||
|
module.exports.WG_POST_UP += `
|
||||||
|
ip6tables -t nat -A POSTROUTING -s ${module.exports.WG_DEFAULT_ADDRESS6.replace('x', '0')}/64 -o ${module.exports.WG_DEVICE} -j MASQUERADE;
|
||||||
|
ip6tables -A INPUT -p udp -m udp --dport ${module.exports.WG_PORT} -j ACCEPT;
|
||||||
|
ip6tables -A FORWARD -i wg0 -o wg0 -j REJECT;
|
||||||
|
ip6tables -A FORWARD -i wg0 -j ACCEPT;
|
||||||
|
ip6tables -A FORWARD -o wg0 -j ACCEPT;`;
|
||||||
|
}
|
||||||
|
module.exports.WG_POST_UP = module.exports.WG_POST_UP.replace(/\n\s*/g, ' ').trim();
|
||||||
|
}
|
||||||
|
|
||||||
module.exports.WG_PRE_DOWN = process.env.WG_PRE_DOWN || '';
|
module.exports.WG_PRE_DOWN = process.env.WG_PRE_DOWN || '';
|
||||||
module.exports.WG_POST_DOWN = process.env.WG_POST_DOWN || `
|
module.exports.WG_POST_DOWN = process.env.WG_POST_DOWN;
|
||||||
iptables -t nat -D POSTROUTING -s ${module.exports.WG_DEFAULT_ADDRESS.replace('x', '0')}/24 -o ${module.exports.WG_DEVICE} -j MASQUERADE;
|
if (!process.env.WG_POST_DOWN) {
|
||||||
iptables -D INPUT -p udp -m udp --dport ${module.exports.WG_PORT} -j ACCEPT;
|
module.exports.WG_POST_DOWN = `
|
||||||
iptables -D FORWARD -i wg0 -j ACCEPT;
|
iptables -t nat -D POSTROUTING -s ${module.exports.WG_DEFAULT_ADDRESS.replace('x', '0')}/24 -o ${module.exports.WG_DEVICE} -j MASQUERADE;
|
||||||
iptables -D FORWARD -o wg0 -j ACCEPT;
|
iptables -D INPUT -p udp -m udp --dport ${module.exports.WG_PORT} -j ACCEPT;
|
||||||
`.split('\n').join(' ');
|
iptables -D FORWARD -i wg0 -o wg0 -j REJECT;
|
||||||
|
iptables -D FORWARD -i wg0 -j ACCEPT;
|
||||||
|
iptables -D FORWARD -o wg0 -j ACCEPT;`;
|
||||||
|
|
||||||
|
if (modules.includes('ip6table_nat')) {
|
||||||
|
module.exports.WG_POST_DOWN += `
|
||||||
|
ip6tables -t nat -D POSTROUTING -s ${module.exports.WG_DEFAULT_ADDRESS6.replace('x', '0')}/64 -o ${module.exports.WG_DEVICE} -j MASQUERADE;
|
||||||
|
ip6tables -D INPUT -p udp -m udp --dport ${module.exports.WG_PORT} -j ACCEPT;
|
||||||
|
ip6tables -D FORWARD -i wg0 -o wg0 -j REJECT;
|
||||||
|
ip6tables -D FORWARD -i wg0 -j ACCEPT;
|
||||||
|
ip6tables -D FORWARD -o wg0 -j ACCEPT;`;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports.WG_POST_DOWN = module.exports.WG_POST_DOWN.replace(/\n\s*/g, ' ').trim();
|
||||||
|
}
|
||||||
module.exports.LANG = process.env.LANG || 'en';
|
module.exports.LANG = process.env.LANG || 'en';
|
||||||
module.exports.UI_TRAFFIC_STATS = process.env.UI_TRAFFIC_STATS || 'false';
|
module.exports.UI_TRAFFIC_STATS = process.env.UI_TRAFFIC_STATS || 'false';
|
||||||
module.exports.UI_CHART_TYPE = process.env.UI_CHART_TYPE || 0;
|
module.exports.UI_CHART_TYPE = process.env.UI_CHART_TYPE || 0;
|
||||||
|
@ -233,6 +233,15 @@ module.exports = class Server {
|
|||||||
const { address } = await readBody(event);
|
const { address } = await readBody(event);
|
||||||
await WireGuard.updateClientAddress({ clientId, address });
|
await WireGuard.updateClientAddress({ clientId, address });
|
||||||
return { success: true };
|
return { success: true };
|
||||||
|
}))
|
||||||
|
.put('/api/wireguard/client/:clientId/address6', defineEventHandler(async (event) => {
|
||||||
|
const clientId = getRouterParam(event, 'clientId');
|
||||||
|
if (clientId === '__proto__' || clientId === 'constructor' || clientId === 'prototype') {
|
||||||
|
throw createError({ status: 403 });
|
||||||
|
}
|
||||||
|
const { address6 } = await readBody(event);
|
||||||
|
await WireGuard.updateClientAddress6({ clientId, address6 });
|
||||||
|
return { success: true };
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const safePathJoin = (base, target) => {
|
const safePathJoin = (base, target) => {
|
||||||
|
@ -17,6 +17,13 @@ module.exports = class Util {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static isValidIPv6(str) {
|
||||||
|
// Regex source : https://stackoverflow.com/a/17871737
|
||||||
|
const regex = new RegExp('^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$');
|
||||||
|
const matches = str.match(regex);
|
||||||
|
return !!matches;
|
||||||
|
}
|
||||||
|
|
||||||
static promisify(fn) {
|
static promisify(fn) {
|
||||||
// eslint-disable-next-line func-names
|
// eslint-disable-next-line func-names
|
||||||
return function(req, res) {
|
return function(req, res) {
|
||||||
|
@ -15,8 +15,11 @@ const {
|
|||||||
WG_PORT,
|
WG_PORT,
|
||||||
WG_CONFIG_PORT,
|
WG_CONFIG_PORT,
|
||||||
WG_MTU,
|
WG_MTU,
|
||||||
|
WG_SRV_MTU,
|
||||||
WG_DEFAULT_DNS,
|
WG_DEFAULT_DNS,
|
||||||
|
WG_DEFAULT_DNS6,
|
||||||
WG_DEFAULT_ADDRESS,
|
WG_DEFAULT_ADDRESS,
|
||||||
|
WG_DEFAULT_ADDRESS6,
|
||||||
WG_PERSISTENT_KEEPALIVE,
|
WG_PERSISTENT_KEEPALIVE,
|
||||||
WG_ALLOWED_IPS,
|
WG_ALLOWED_IPS,
|
||||||
WG_PRE_UP,
|
WG_PRE_UP,
|
||||||
@ -45,12 +48,14 @@ module.exports = class WireGuard {
|
|||||||
log: 'echo ***hidden*** | wg pubkey',
|
log: 'echo ***hidden*** | wg pubkey',
|
||||||
});
|
});
|
||||||
const address = WG_DEFAULT_ADDRESS.replace('x', '1');
|
const address = WG_DEFAULT_ADDRESS.replace('x', '1');
|
||||||
|
const address6 = WG_DEFAULT_ADDRESS6.replace('x', '1');
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
server: {
|
server: {
|
||||||
privateKey,
|
privateKey,
|
||||||
publicKey,
|
publicKey,
|
||||||
address,
|
address,
|
||||||
|
address6,
|
||||||
},
|
},
|
||||||
clients: {},
|
clients: {},
|
||||||
};
|
};
|
||||||
@ -100,7 +105,8 @@ module.exports = class WireGuard {
|
|||||||
# Server
|
# Server
|
||||||
[Interface]
|
[Interface]
|
||||||
PrivateKey = ${config.server.privateKey}
|
PrivateKey = ${config.server.privateKey}
|
||||||
Address = ${config.server.address}/24
|
Address = ${config.server.address}/24, ${config.server.address6}/64
|
||||||
|
${WG_SRV_MTU ? `MTU = ${WG_SRV_MTU}` : ''}
|
||||||
ListenPort = ${WG_PORT}
|
ListenPort = ${WG_PORT}
|
||||||
PreUp = ${WG_PRE_UP}
|
PreUp = ${WG_PRE_UP}
|
||||||
PostUp = ${WG_POST_UP}
|
PostUp = ${WG_POST_UP}
|
||||||
@ -117,7 +123,7 @@ PostDown = ${WG_POST_DOWN}
|
|||||||
[Peer]
|
[Peer]
|
||||||
PublicKey = ${client.publicKey}
|
PublicKey = ${client.publicKey}
|
||||||
${client.preSharedKey ? `PresharedKey = ${client.preSharedKey}\n` : ''
|
${client.preSharedKey ? `PresharedKey = ${client.preSharedKey}\n` : ''
|
||||||
}AllowedIPs = ${client.address}/32`;
|
}AllowedIPs = ${client.address}/32, ${client.address6}/128`;
|
||||||
}
|
}
|
||||||
|
|
||||||
debug('Config saving...');
|
debug('Config saving...');
|
||||||
@ -143,6 +149,7 @@ ${client.preSharedKey ? `PresharedKey = ${client.preSharedKey}\n` : ''
|
|||||||
name: client.name,
|
name: client.name,
|
||||||
enabled: client.enabled,
|
enabled: client.enabled,
|
||||||
address: client.address,
|
address: client.address,
|
||||||
|
address6: client.address6,
|
||||||
publicKey: client.publicKey,
|
publicKey: client.publicKey,
|
||||||
createdAt: new Date(client.createdAt),
|
createdAt: new Date(client.createdAt),
|
||||||
updatedAt: new Date(client.updatedAt),
|
updatedAt: new Date(client.updatedAt),
|
||||||
@ -201,11 +208,14 @@ ${client.preSharedKey ? `PresharedKey = ${client.preSharedKey}\n` : ''
|
|||||||
async getClientConfiguration({ clientId }) {
|
async getClientConfiguration({ clientId }) {
|
||||||
const config = await this.getConfig();
|
const config = await this.getConfig();
|
||||||
const client = await this.getClient({ clientId });
|
const client = await this.getClient({ clientId });
|
||||||
|
const isDnsSet = WG_DEFAULT_DNS || WG_DEFAULT_DNS6;
|
||||||
|
const dnsServers = [WG_DEFAULT_DNS, WG_DEFAULT_DNS6].filter((item) => !!item).join(', ');
|
||||||
|
|
||||||
return `
|
return `
|
||||||
[Interface]
|
[Interface]
|
||||||
PrivateKey = ${client.privateKey ? `${client.privateKey}` : 'REPLACE_ME'}
|
PrivateKey = ${client.privateKey ? `${client.privateKey}` : 'REPLACE_ME'}
|
||||||
Address = ${client.address}/24
|
Address = ${client.address}/32, ${client.address6}/128
|
||||||
|
${isDnsSet ? `DNS = ${dnsServers}\n` : ''}\
|
||||||
${WG_DEFAULT_DNS ? `DNS = ${WG_DEFAULT_DNS}\n` : ''}\
|
${WG_DEFAULT_DNS ? `DNS = ${WG_DEFAULT_DNS}\n` : ''}\
|
||||||
${WG_MTU ? `MTU = ${WG_MTU}\n` : ''}\
|
${WG_MTU ? `MTU = ${WG_MTU}\n` : ''}\
|
||||||
|
|
||||||
@ -255,12 +265,29 @@ Endpoint = ${WG_HOST}:${WG_CONFIG_PORT}`;
|
|||||||
throw new Error('Maximum number of clients reached.');
|
throw new Error('Maximum number of clients reached.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let address6;
|
||||||
|
for (let i = 2; i < 255; i++) {
|
||||||
|
const client = Object.values(config.clients).find((client) => {
|
||||||
|
return client.address6 === WG_DEFAULT_ADDRESS6.replace('x', i.toString(16));
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!client) {
|
||||||
|
address6 = WG_DEFAULT_ADDRESS6.replace('x', i.toString(16));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!address6) {
|
||||||
|
throw new Error('Maximum number of clients reached.');
|
||||||
|
}
|
||||||
|
|
||||||
// Create Client
|
// Create Client
|
||||||
const id = crypto.randomUUID();
|
const id = crypto.randomUUID();
|
||||||
const client = {
|
const client = {
|
||||||
id,
|
id,
|
||||||
name,
|
name,
|
||||||
address,
|
address,
|
||||||
|
address6,
|
||||||
privateKey,
|
privateKey,
|
||||||
publicKey,
|
publicKey,
|
||||||
preSharedKey,
|
preSharedKey,
|
||||||
@ -327,6 +354,19 @@ Endpoint = ${WG_HOST}:${WG_CONFIG_PORT}`;
|
|||||||
await this.saveConfig();
|
await this.saveConfig();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async updateClientAddress6({ clientId, address6 }) {
|
||||||
|
const client = await this.getClient({ clientId });
|
||||||
|
|
||||||
|
if (!Util.isValidIPv6(address6)) {
|
||||||
|
throw new ServerError(`Invalid Address: ${address6}`, 400);
|
||||||
|
}
|
||||||
|
|
||||||
|
client.address6 = address6;
|
||||||
|
client.updatedAt = new Date();
|
||||||
|
|
||||||
|
await this.saveConfig();
|
||||||
|
}
|
||||||
|
|
||||||
async __reloadConfig() {
|
async __reloadConfig() {
|
||||||
await this.__buildConfig();
|
await this.__buildConfig();
|
||||||
await this.__syncConfig();
|
await this.__syncConfig();
|
||||||
|
14
src/package-lock.json
generated
14
src/package-lock.json
generated
@ -18,7 +18,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint-config-athom": "^3.1.3",
|
"eslint-config-athom": "^3.1.3",
|
||||||
"nodemon": "^3.1.4",
|
"nodemon": "^3.1.4",
|
||||||
"tailwindcss": "^3.4.7"
|
"tailwindcss": "^3.4.9"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
@ -2306,9 +2306,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/foreground-child": {
|
"node_modules/foreground-child": {
|
||||||
"version": "3.2.1",
|
"version": "3.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz",
|
||||||
"integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==",
|
"integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -4687,9 +4687,9 @@
|
|||||||
"peer": true
|
"peer": true
|
||||||
},
|
},
|
||||||
"node_modules/tailwindcss": {
|
"node_modules/tailwindcss": {
|
||||||
"version": "3.4.7",
|
"version": "3.4.9",
|
||||||
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.7.tgz",
|
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.9.tgz",
|
||||||
"integrity": "sha512-rxWZbe87YJb4OcSopb7up2Ba4U82BoiSGUdoDr3Ydrg9ckxFS/YWsvhN323GMcddgU65QRy7JndC7ahhInhvlQ==",
|
"integrity": "sha512-1SEOvRr6sSdV5IDf9iC+NU4dhwdqzF4zKKq3sAbasUWHEM6lsMhX+eNN5gkPx1BvLFEnZQEUFbXnGj8Qlp83Pg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint-config-athom": "^3.1.3",
|
"eslint-config-athom": "^3.1.3",
|
||||||
"nodemon": "^3.1.4",
|
"nodemon": "^3.1.4",
|
||||||
"tailwindcss": "^3.4.7"
|
"tailwindcss": "^3.4.9"
|
||||||
},
|
},
|
||||||
"nodemonConfig": {
|
"nodemonConfig": {
|
||||||
"ignore": [
|
"ignore": [
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
! tailwindcss v3.4.7 | MIT License | https://tailwindcss.com
|
! tailwindcss v3.4.9 | MIT License | https://tailwindcss.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
<link rel="apple-touch-icon" href="./img/apple-touch-icon.png">
|
<link rel="apple-touch-icon" href="./img/apple-touch-icon.png">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||||
</head>
|
</head>
|
||||||
<style>
|
<style>
|
||||||
[v-cloak] {
|
[v-cloak] {
|
||||||
@ -42,7 +43,7 @@
|
|||||||
<path stroke-linecap="round" stroke-linejoin="round"
|
<path stroke-linecap="round" stroke-linejoin="round"
|
||||||
d="M21.752 15.002A9.72 9.72 0 0 1 18 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 0 0 3 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 0 0 9.002-5.998Z" />
|
d="M21.752 15.002A9.72 9.72 0 0 1 18 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 0 0 3 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 0 0 9.002-5.998Z" />
|
||||||
</svg>
|
</svg>
|
||||||
<svg v-else xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24"
|
<svg v-else xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24"
|
||||||
class="w-5 h-5 fill-gray-600 dark:fill-neutral-400">
|
class="w-5 h-5 fill-gray-600 dark:fill-neutral-400">
|
||||||
<path
|
<path
|
||||||
d="M12,2.2c-5.4,0-9.8,4.4-9.8,9.8s4.4,9.8,9.8,9.8s9.8-4.4,9.8-9.8S17.4,2.2,12,2.2z M3.8,12c0-4.5,3.7-8.2,8.2-8.2v16.5C7.5,20.2,3.8,16.5,3.8,12z" />
|
d="M12,2.2c-5.4,0-9.8,4.4-9.8,9.8s4.4,9.8,9.8,9.8s9.8-4.4,9.8-9.8S17.4,2.2,12,2.2z M3.8,12c0-4.5,3.7-8.2,8.2-8.2v16.5C7.5,20.2,3.8,16.5,3.8,12z" />
|
||||||
@ -224,7 +225,7 @@
|
|||||||
</svg>
|
</svg>
|
||||||
{{client.transferTxCurrent | bytes}}/s
|
{{client.transferTxCurrent | bytes}}/s
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<!-- Inline Transfer RX -->
|
<!-- Inline Transfer RX -->
|
||||||
<span v-if="!uiTrafficStats && client.transferRx" class="whitespace-nowrap" :title="$t('totalUpload') + bytes(client.transferRx)">
|
<span v-if="!uiTrafficStats && client.transferRx" class="whitespace-nowrap" :title="$t('totalUpload') + bytes(client.transferRx)">
|
||||||
·
|
·
|
||||||
@ -247,6 +248,31 @@
|
|||||||
<div v-if="uiTrafficStats"
|
<div v-if="uiTrafficStats"
|
||||||
class="flex gap-2 items-center shrink-0 text-gray-400 dark:text-neutral-400 text-xs mt-px justify-end">
|
class="flex gap-2 items-center shrink-0 text-gray-400 dark:text-neutral-400 text-xs mt-px justify-end">
|
||||||
|
|
||||||
|
<!-- Address6 -->
|
||||||
|
<span class="group">
|
||||||
|
|
||||||
|
<!-- Show -->
|
||||||
|
<input v-show="clientEditAddress6Id === client.id" v-model="clientEditAddress6"
|
||||||
|
v-on:keyup.enter="updateClientAddress6(client, clientEditAddress6); clientEditAddress6 = null; clientEditAddress6Id = null;"
|
||||||
|
v-on:keyup.escape="clientEditAddress6 = null; clientEditAddress6Id = null;"
|
||||||
|
:ref="'client-' + client.id + '-address6'"
|
||||||
|
class="rounded border-2 border-gray-100 focus:border-gray-200 outline-none w-20 text-black" />
|
||||||
|
<span v-show="clientEditAddress6Id !== client.id"
|
||||||
|
class="inline-block border-t-2 border-b-2 border-transparent">{{client.address6}}</span>
|
||||||
|
|
||||||
|
<!-- Edit -->
|
||||||
|
<span v-show="clientEditAddress6Id !== client.id"
|
||||||
|
@click="clientEditAddress6 = client.address6; clientEditAddress6Id = client.id; setTimeout(() => $refs['client-' + client.id + '-address6'][0].select(), 1);"
|
||||||
|
class="cursor-pointer opacity-0 group-hover:opacity-100 transition-opacity">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||||||
|
class="h-4 w-4 inline align-middle opacity-25 hover:opacity-100" fill="none"
|
||||||
|
viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||||
|
d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" />
|
||||||
|
</svg>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
<!-- Transfer TX -->
|
<!-- Transfer TX -->
|
||||||
<div class="min-w-20 md:min-w-24" v-if="client.transferTx">
|
<div class="min-w-20 md:min-w-24" v-if="client.transferTx">
|
||||||
<span class="flex gap-1" :title="$t('totalDownload') + bytes(client.transferTx)">
|
<span class="flex gap-1" :title="$t('totalDownload') + bytes(client.transferTx)">
|
||||||
@ -614,4 +640,4 @@
|
|||||||
<script src="./js/app.js"></script>
|
<script src="./js/app.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@ -138,6 +138,14 @@ class API {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async updateClientAddress6({ clientId, address6 }) {
|
||||||
|
return this.call({
|
||||||
|
method: 'put',
|
||||||
|
path: `/wireguard/client/${clientId}/address6/`,
|
||||||
|
body: { address6 },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
async restoreConfiguration(file) {
|
async restoreConfiguration(file) {
|
||||||
return this.call({
|
return this.call({
|
||||||
method: 'put',
|
method: 'put',
|
||||||
|
@ -63,6 +63,8 @@ new Vue({
|
|||||||
clientEditNameId: null,
|
clientEditNameId: null,
|
||||||
clientEditAddress: null,
|
clientEditAddress: null,
|
||||||
clientEditAddressId: null,
|
clientEditAddressId: null,
|
||||||
|
clientEditAddress6: null,
|
||||||
|
clientEditAddress6Id: null,
|
||||||
qrcode: null,
|
qrcode: null,
|
||||||
|
|
||||||
currentRelease: null,
|
currentRelease: null,
|
||||||
@ -299,6 +301,11 @@ new Vue({
|
|||||||
.catch((err) => alert(err.message || err.toString()))
|
.catch((err) => alert(err.message || err.toString()))
|
||||||
.finally(() => this.refresh().catch(console.error));
|
.finally(() => this.refresh().catch(console.error));
|
||||||
},
|
},
|
||||||
|
updateClientAddress6(client, address6) {
|
||||||
|
this.api.updateClientAddress6({ clientId: client.id, address6 })
|
||||||
|
.catch((err) => alert(err.message || err.toString()))
|
||||||
|
.finally(() => this.refresh().catch(console.error));
|
||||||
|
},
|
||||||
restoreConfig(e) {
|
restoreConfig(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
const file = e.currentTarget.files.item(0);
|
const file = e.currentTarget.files.item(0);
|
||||||
|
@ -57,10 +57,17 @@ const messages = { // eslint-disable-line no-unused-vars
|
|||||||
disableClient: 'Вимкнути клієнта',
|
disableClient: 'Вимкнути клієнта',
|
||||||
enableClient: 'Увімкнути клієнта',
|
enableClient: 'Увімкнути клієнта',
|
||||||
noClients: 'Ще немає клієнтів.',
|
noClients: 'Ще немає клієнтів.',
|
||||||
|
noPrivKey: 'У цього клієнта немає відомого приватного ключа. Неможливо створити конфігурацію.',
|
||||||
showQR: 'Показати QR-код',
|
showQR: 'Показати QR-код',
|
||||||
downloadConfig: 'Завантажити конфігурацію',
|
downloadConfig: 'Завантажити конфігурацію',
|
||||||
madeBy: 'Зроблено',
|
madeBy: 'Зроблено',
|
||||||
donate: 'Пожертвувати',
|
donate: 'Пожертвувати',
|
||||||
|
toggleCharts: 'Показати/сховати діаграми',
|
||||||
|
theme: { dark: 'Темна тема', light: 'Світла тема', auto: 'Автоматична тема' },
|
||||||
|
restore: 'Відновити',
|
||||||
|
backup: 'Резервна копія',
|
||||||
|
titleRestoreConfig: 'Відновити конфігурацію',
|
||||||
|
titleBackupConfig: 'Створити резервну копію конфігурації',
|
||||||
},
|
},
|
||||||
ru: {
|
ru: {
|
||||||
name: 'Имя',
|
name: 'Имя',
|
||||||
|
@ -6,7 +6,7 @@ After=network-online.target nss-lookup.target
|
|||||||
Environment="WG_HOST=raspberrypi.local" # Change this to your host's public address or static public ip.
|
Environment="WG_HOST=raspberrypi.local" # Change this to your host's public address or static public ip.
|
||||||
Environment="PASSWORD=REPLACEME" # When set, requires a password when logging in to the Web UI, to disable add a hashtag
|
Environment="PASSWORD=REPLACEME" # When set, requires a password when logging in to the Web UI, to disable add a hashtag
|
||||||
#Environment="WG_DEFAULT_ADDRESS=10.0.8.x" #Clients IP address range.
|
#Environment="WG_DEFAULT_ADDRESS=10.0.8.x" #Clients IP address range.
|
||||||
#Environment="WG_DEFAULT_DNS=10.0.8.1, 1.1.1.1" #DNS server clients will use. If set to blank value, clients will not use any DNS.
|
#Environment="WG_DEFAULT_DNS=10.0.8.1, 84.200.69.80" #DNS server clients will use. If set to blank value, clients will not use any DNS.
|
||||||
#Environment="WG_ALLOWED_IPS=0.0.0.0/0,::/0" #Allowed IPs clients will use.
|
#Environment="WG_ALLOWED_IPS=0.0.0.0/0,::/0" #Allowed IPs clients will use.
|
||||||
#Environment="WG_DEVICE=ens1" #Ethernet device the wireguard traffic should be forwarded through.
|
#Environment="WG_DEVICE=ens1" #Ethernet device the wireguard traffic should be forwarded through.
|
||||||
#Environment="PORT=80" #TCP port for Web UI. Default : 51821
|
#Environment="PORT=80" #TCP port for Web UI. Default : 51821
|
||||||
|
Loading…
x
Reference in New Issue
Block a user