mholt/caddy-dynamicdns

Using multiple providers

Geschlossen

#47 geöffnet am 14.07.2023

 (8 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Go (38 Forks)github user discovery
enhancementhelp wanted

Repository-Metriken

Stars
 (365 Sterne)
PR-Merge-Metriken
 (Durchschn. Merge 3T 13h) (1 gemergte PR in 30 T)

Beschreibung

Is it possible to use multiple providers to update different domains? I tried this config (simplified)

{
    dynamic_dns {
        provider cloudflare {$CLOUDFLARE_API_TOKEN}
        domains {
            main-domain.com
        }
    }

    dynamic_dns {
        provider duckdns {$DUCKDNS_TOKEN}
        domains {
            secondary-domain.com
        }
    }
}

but it seems like only the second dynamic_dns block (for DuckDNS) is functional; main-domain.com is not updated at all.

Contributor Guide