You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I understand I could be banned from the repository if I misusing issue section not for posting bugs, but for question or 'broken website' report. / Я понимаю, что меня могут заблокировать в репозитории, если я буду использовать раздел issue не для сообщений об ошибках, а для вопросов или сообщении о «неработающем веб-сайте».
Operating system / операционная система
Win 11 latest update
Running as service / Запуск программы как сервис
I installed it as a service / Установил как сервис Windows
Describe the bug / Опишите ошибку программы
I have pihole + unbound + ngnix on my homeserver and it was working for a year. Suddenly, it stopped accessing local cnames. when i close the goodbyedpi cnames are working but when i enable the dpi its not.
Additional information / Дополнительная информация
CAPTCHA
Operating system / операционная система
Win 11 latest update
Running as service / Запуск программы как сервис
I installed it as a service / Установил как сервис Windows
Describe the bug / Опишите ошибку программы
I have pihole + unbound + ngnix on my homeserver and it was working for a year. Suddenly, it stopped accessing local cnames. when i close the goodbyedpi cnames are working but when i enable the dpi its not.
Additional information / Дополнительная информация
my pi hole setup:
networks:
dns_net:
driver: bridge
ipam:
config:
- subnet: 172.23.0.0/16
proxy:
external: true
services:
pihole:
container_name: pihole
hostname: pihole
image: pihole/pihole:latest
networks:
dns_net:
ipv4_address: 172.23.0.7
proxy:
ports:
- "53:53/tcp"
- "53:53/udp"
- "85:80/tcp"
environment:
TZ: 'Europe/Istanbul'
WEBPASSWORD: '************'
PIHOLE_DNS_: '172.23.0.8#5053' # Ensure this is pointing to Unbound
FTLCONF_LOCAL_IPV4: '192.168.31.179'
volumes:
- '/home/ubuntu/docker/pihole/etc-pihole/:/etc/pihole/'
- '/home/ubuntu/docker/pihole/etc-dnsmasq.d/:/etc/dnsmasq.d/'
restart: unless-stopped
unbound:
container_name: unbound
image: mvance/unbound-rpi:latest
networks:
dns_net:
ipv4_address: 172.23.0.8
volumes:
- /home/ubuntu/docker/unbound:/opt/unbound/etc/unbound
ports:
- "5053:53/tcp" # Unbound DNS port
- "5053:53/udp"
healthcheck:
test: ["NONE"]
restart: unless-stopped
The text was updated successfully, but these errors were encountered: