feat: wireguard

This commit is contained in:
Strix 2023-10-23 02:16:24 +02:00
parent a92a2aa1cc
commit 724cff6fbd
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
2 changed files with 39 additions and 9 deletions

View file

@ -2,16 +2,8 @@ server {
listen 80;
server_name link.ixvd.net;
# SSL is managed by certbot, no need for a ssl listen; it will be generated automagically!
# default html page
location / {
root /usr/share/nginx/html;
index index.html index.htm;
proxy_pass http://wireguard:5000;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}

View file

@ -0,0 +1,38 @@
version: '2.2'
services:
wireguard:
image: linuxserver/wireguard:latest
container_name: wireguard
cap_add:
- NET_ADMIN
volumes:
- /srv/wg/config:/config
ports:
- "51820:51820/udp"
networks:
- proxy
- internal
restart: unless-stopped
wireguard-ui:
image: ngoduykhanh/wireguard-ui:latest
container_name: wireguard-ui
depends_on:
- wireguard
cap_add:
- NET_ADMIN
network_mode: service:wireguard
env_file:
- /etc/ixvd/secrets/env/wg-ui.env
environment:
- WGUI_MANAGE_START=true
- WGUI_MANAGE_RESTART=true
restart: unless-stopped
logging:
driver: json-file
options:
max-size: 50m
volumes:
- /srv/wg/other/ui-db:/app/db
- /srv/wg/config:/etc/wireguard