mholt/caddy-dynamicdns

Using multiple providers

Chiusa

#47 aperta il 14 lug 2023

 (8 commenti) (0 reazioni) (0 assegnatari)Go (38 fork)github user discovery
enhancementhelp wanted

Metriche repository

Star
 (365 stelle)
Metriche merge PR
 (Merge medio 3g 13h) (1 PR mergiata in 30 g)

Descrizione

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.

Guida contributor