Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configuration with NGINX Proxy Manager [Reverse Proxy] #38

Open
empx92 opened this issue Nov 24, 2023 · 0 comments
Open

Configuration with NGINX Proxy Manager [Reverse Proxy] #38

empx92 opened this issue Nov 24, 2023 · 0 comments

Comments

@empx92
Copy link

empx92 commented Nov 24, 2023

i have the follwing configuration in my docker

version: '3'
services:
  ddns:
    image: bbaerthlein/docker-ddns-server:latest
    container_name: dyndns
    restart: unless-stopped
    environment:
      DDNS_ADMIN_LOGIN: 'example:example_pwd'
      DDNS_DOMAINS: 'ns.example.com'
      DDNS_PARENT_NS: 'ns.example.com'
      DDNS_DEFAULT_TTL: '3600'
    ports:
      - "53:53"
      - "53:53/udp"
      - "8080:8080"
    volumes:
       - ./bind-data:/var/cache/bind
       - ./database:/root/database
    networks:
       - proxy
       - dyndns
networks:
  dyndns:
  proxy:
    external: true 

The configuration works fine and is running. I also can update the IPs but i couldn't manage to get the answer when calling the host.

Configuration DNS Try 1:
1.) ns.example.com A IP-OF-NGINX-PROXY
2.) *.ns.example com CNAME ns.example.com

Not working (only for update)

Configuration DNS Try 1:
1.) ns.example.com A IP-OF-NGINX-PROXY
2.) *.ns.example com NS ns.example.com

Not working (only for update), if i try the host host1.ns.example.com i get "no dns-adress found. DNS_PROBE_POSSIBLE " when i look at the terminal of DDNS-Server there is also no request.

If i make a NS-Lookup at ns.example.com there are even no entries

So i am wondering if i have some misconfiguration of my NGINX Proxymanager.
Did anyone manage it to get it work?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant