Adguard has blocked external access to my server
by elsmandino from LinuxQuestions.org on (#6QN16)
Morning all.
I am running the latest version of OMV on my server (Debian 12) and have used the plugin to set up Wireguard.
I then installed the Wireguard app on my phone and have no issues connecting whilst outside my home network.
However, I recently installed Adguard Home as a container on my system, using the following compose file:
Code:services:
adguardhome:
container_name: adguardhome
image: adguard/adguardhome:latest
hostname: adguardhome
restart: unless-stopped
ports:
- "192.168.1.19:53:53/udp"
- "192.168.1.19:53:53/tcp"
# - "192.168.1.19:3000:3000/tcp"
- 8083:80/tcp
volumes:
- /etc/localtime:/etc/localtime:ro
- /srv/dev-disk-by-uuid-85c4513d-cfd9-4134-ad11 5d6552e81a81/appdata/adguardhome/work:/opt/adguardhome/work
- /srv/dev-disk-by-uuid-85c4513d-cfd9-4134-ad11-5d6552e81a81/appdata/adguardhome/conf:/opt/adguardhome/conf
environment:
- PUID=1001
- PGID=100Whenever the container is running, I automatically lose external access to the server.
I have no idea how to start diagnosing the problem and would be grateful for any tips.
I am running the latest version of OMV on my server (Debian 12) and have used the plugin to set up Wireguard.
I then installed the Wireguard app on my phone and have no issues connecting whilst outside my home network.
However, I recently installed Adguard Home as a container on my system, using the following compose file:
Code:services:
adguardhome:
container_name: adguardhome
image: adguard/adguardhome:latest
hostname: adguardhome
restart: unless-stopped
ports:
- "192.168.1.19:53:53/udp"
- "192.168.1.19:53:53/tcp"
# - "192.168.1.19:3000:3000/tcp"
- 8083:80/tcp
volumes:
- /etc/localtime:/etc/localtime:ro
- /srv/dev-disk-by-uuid-85c4513d-cfd9-4134-ad11 5d6552e81a81/appdata/adguardhome/work:/opt/adguardhome/work
- /srv/dev-disk-by-uuid-85c4513d-cfd9-4134-ad11-5d6552e81a81/appdata/adguardhome/conf:/opt/adguardhome/conf
environment:
- PUID=1001
- PGID=100Whenever the container is running, I automatically lose external access to the server.
I have no idea how to start diagnosing the problem and would be grateful for any tips.