I'm able to access my home server using wg-easy, including the channels dvr website. However when I open up the Channels app it doesn't connect. I'm not sure what to do about that, any ideas?
This is my docker compose file for wg-easy:
services:
wg-easy:
image: ghcr.io / wg-easy / wg-easy
container_name: wg-easy
restart: unless-stopped
environment:
- WG_HOST=XXXXXX.XXXXX.XXX
- AllowedIPs = 0.0.0.0/0, ::/0, 192.168.1.0/24
volumes:
- /opt/AppData/Config/WG-Easy:/etc/wireguard
ports:
- 51820:51820/udp
- 51821:51821/tcp
cap_add:
- NET_ADMIN
- SYS_MODULE
sysctls:
- net.ipv4.ip_forward=1
- net.ipv4.conf.all.src_valid_mark=1