Hi guys!

I’m considering moving away from duckdns, as it’s becoming increasingly unreliable. I’d like to check some other free dynamic DNS alternatives (I’m open to suggestions!).

My idea would be to have the server run under two different domains, but both directing to the same services. Is this possible? What shoudl I change in nginx in order to answer to two different domains/names?

Thanks!

          • iturnedintoanewt@lemm.eeOP
            link
            fedilink
            English
            arrow-up
            3
            ·
            edit-2
            3 days ago

            Does it matter?

            No, it does not change, but why is this something of concern? The problem is duckdns DOES NOT REPLY providing DNS replies, not to my own servers, but to people outside looking for my servers by typing their address. Duck fails to provide a response to those queries, and users get timeouts. I can frequently replicate this with either dig or nslookup, from different machines, either inside my network or at random connections.

            I managed today to run certbot to register 2 new subdomains that yesterday consistently failed with a long timeout during THE WHOLE DAY. Today the same certbot command on the same server ran straight at the first attempt.

            So…yeah. Unreliable.

            • catloaf@lemm.ee
              link
              fedilink
              English
              arrow-up
              1
              ·
              3 days ago

              Oh I thought you meant it just doesn’t reply to DDNS updates. If it doesn’t even reply to DNS queries, yeah that’s a big issue. What did their support have to say about it?

              • iturnedintoanewt@lemm.eeOP
                link
                fedilink
                English
                arrow-up
                1
                ·
                edit-2
                3 days ago

                …what support? They barely reply any queries people post in their google groups. If you go there you’ll see most people will try to reach them either due to servers down (the main issue at hand) or login issues which never get fixed (the longest standing issue, better create a different new subdomain) from what I’ve seen. I’ve also tried repeatedly to reach them regarding changing the token access, but with no luck. It’s a free service so I can’t complain, but the only support you actually will get is from other users, and for some scenarios that’s not quite enough.

                EDIT: Oh wow right after posting this I just saw they actually replied regarding the SSO/tokens issue most people have (SSO failed due to the reddit snafu, you end up with just the token and no chance to do any further changes to your account again). This has been an ongoing issue for over two years, I just saw they finally replied (I think for the first time) a couple of weeks ago.

                • catloaf@lemm.ee
                  link
                  fedilink
                  English
                  arrow-up
                  1
                  ·
                  3 days ago

                  Oh if they don’t even have support, yeah I would have moved away a long time ago.

  • object [Object]@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    3 days ago

    I switched from duckdns about a year ago as it failed to resolve the addresses for my jellyfin server. I ended up buying a domain from cloudflare for 3 years for about $4, and I self-hosted ddns updater to automatically grab the dynamic ip, and set it to a subdomain.

    As for your nginx config, I’d imagine you could make 2 separate config files in sites-enabled that are nearly identical, but listen for different domains. Something like this:

    
    #config file 1 
    server {
        listen 80;
        server_name example_a.com;
    
        location / {
            return 301 http://example_c.com$request_uri;
    	#or use an ip instead of example_c.com
        }
    }
    
    #config file 2
    server {
        listen 80;
        server_name example_b.com;
    
        location / {
            return 301 http://example_c.com$request_uri;
    	#or use an ip instead of example_c.com
        }
    }
    
    
    #Or use "proxy_pass http://example_c.com;" in the location tag instead of "return 301..." if you want to reverse proxy the traffic
    
    
    • iturnedintoanewt@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      3 days ago

      Thanks. I’m seriously considering also a paid domain, so it’s good to hear from your experience. I might go try some other free provider first though.

      • cheesemoo@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        3 days ago

        I switched to a paid domain in the last few months and regret not doing it sooner - it just works, and it’s nice knowing that I won’t have to reconfigure all my stuff to point at a different domain name again in the future. Price was maybe $15/year on porkbun - very much worth it imo.

        I’ve also used freedns in the past and had no complaints about them, except that I think wildcard subdomains are limited to paid supporters (very cheap though) and at the time my SWAG docker image maybe didn’t support them? It’s been a while. The service was great though. Never had problems like I did with duckdns.

  • beerclue@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    3 days ago

    How is duckdns unreliable? I use it just to have wireguard access, been using it for years. Just curious about your issues…

    • iturnedintoanewt@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      edit-2
      3 days ago

      It will fail to resolve randomly, and then your services goes down. And you expend quite a while figuring out whatever might have failed until the typical “when in doubt, it’s DNS” pops up. This also applies when you’re trying to add/renew subdomains.

      Just a sample…

      https://lemmy.world/post/13565617

  • Matt The Horwood@lemmy.horwood.cloud
    link
    fedilink
    English
    arrow-up
    2
    ·
    4 days ago

    Would recommend OVH for both domain name and DNS, they have DNS APIs so you can get certificates from lets encrypt with ease. Also you could update your zone when your home IP changes

  • tofuwabohu@slrpnk.net
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    4 days ago

    This should be possible, in nginx you would just have near identical entries that deliver the same content. The service itself sometimes takes a domain to build internal links etc, and those usually only take one.