mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-08-02 10:38:41 -04:00
Help: Cannot add "proxied" to Cloudflare config. #558
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @devanteweary on GitHub (Oct 7, 2025).
I get the following error when adding the
proxiedoption to Cloudflare in the config.json:2025-10-07T19:26:32-07:00 ERROR json: cannot unmarshal string into Go struct field .proxied of type bool95bcce2)If I add the proxied option, I get that error.
If I take it out, everything works fine except the container shows as unhealthy.
Regarding the unhealthy part, if I check
docker inspect ddns-updater, I get the following under State > Health Log:I get that about four or five times. The 172.67 address is my CloudFlare proxied IP. I blanked out the identifying parts.
This all stemmed from me trying to fix Unraid showing the container as Unhealthy.
Logs:
Docker Inspect results (trunicated):
Configuration file (remove your credentials!):
Host OS: Unraid 7.1.4
@marcus-k commented on GitHub (Oct 13, 2025):
I have this same issue :/ Would love to know what's going on.
@wilkinsalex commented on GitHub (Nov 6, 2025):
Proxied is a boolean response, not a string. so your configuration needs to be.
"proxied": true,true / false, without the quotes. It works for me
@devanteweary commented on GitHub (Nov 17, 2025):
I kinda forgot about this issue but I just checked and looks like I had removed the proxy line and the Cloudflare updating seems to be fine when I checked just now.
I do in fact have my Cloudflare domains set to proxy but for whatever reason, it seems to be working.