Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wg-gen-web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vlbox
wg-gen-web
Commits
fae25b5a
Commit
fae25b5a
authored
5 years ago
by
vx3r
Browse files
Options
Downloads
Patches
Plain Diff
update readme with systemd and inotify examples
parent
38c86f32
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+46
-2
46 additions, 2 deletions
README.md
with
46 additions
and
2 deletions
README.md
+
46
−
2
View file @
fae25b5a
...
...
@@ -11,7 +11,7 @@ Simple Web based configuration generator for [WireGuard](https://wireguard.com).
## Whay another one ?
All WireGuard UI implementation are trying to manage the
WireGuard
by applying configurations
or
creati
o
n network rules.
All WireGuard UI implementation are trying to manage the
service
by applying configurations
and
creatin
g
network rules.
This implementation only generate configuration and its up to you to create network rules and apply configuration to WireGuard.
For example by monituring generated directory with
[
inotifywait
](
https://github.com/inotify-tools/inotify-tools/wiki
)
.
...
...
@@ -50,6 +50,51 @@ services:
volumes:
- /mnt/raid-lv-data/docker-persistent-data/wg-gen-web:/data
```
## How to trigger WireGuard on host
Before going further create a symlink from docker mounted volume to
`/etc/wireguard`
```
ln -s /mnt/raid-lv-data/docker-persistent-data/wg-gen-web /etc/wireguard
```
### Example with ```systemd```
Using
`systemd.path`
monitor for directory changes see
[
systemd doc
](
https://www.freedesktop.org/software/systemd/man/systemd.path.html
)
```
# /etc/systemd/system/wg-gen-web.path
[Unit]
Description=Watch /etc/wireguard for changes
[Path]
PathModified=/etc/wireguard
[Install]
WantedBy=multi-user.target
```
This
`.path`
will activate unit file with the same name
```
# /etc/systemd/system/wg-gen-web.service
[Unit]
Description=Restart WireGuard
After=network.target
[Service]
Type=oneshot
ExecStart=/usr/bin/systemctl restart wg-quick@wg0.service
[Install]
WantedBy=multi-user.target
```
Which will restart WireGuard service
### Example with ```inotifywait```
Using whatever init system create a daemon running this script
```
#!/bin/sh
while
inotifywait
-e
modify
-e
create /etc/wireguard
;
do
wg-quick down wg0
wg-quick up wg0
done
```
## What is out of scope
...
...
@@ -58,7 +103,6 @@ services:
## TODO
*
Full setup example with
`inotifywait`
and
`systemd`
*
Multi-user support behind
[
Authelia
](
https://github.com/authelia/authelia
)
(
suggestions
/ thoughts are welcome)
*
Send configs by email to client
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment