HTTPS Connection error for "https://changedetection.io/CHANGELOG.txt"
See original GitHub issueAfter installing changedetection on my NAS with the default docker-compose.yaml I get for the default configured URL https://changedetection.io/CHANGELOG.txt the following error:
(https://changedetection.io/CHANGELOG.txt
HTTPSConnectionPool(host='changedetection.io', port=443): Max retries exceeded with url: /CHANGELOG.txt (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f376cd612e0>: Failed to establish a new connection: [Errno 111] ECONNREFUSED')))[](https://changedetection.io/CHANGELOG.txt)https://changedetection.io/CHANGELOG.txt
HTTPSConnectionPool(host='changedetection.io', port=443): Max retries exceeded with url: /CHANGELOG.txt (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f376cd612e0>: Failed to establish a new connection: [Errno 111] ECONNREFUSED'))
And only for that one - the others are working ok. See Screensshot below.
Tried the same in parallel on my VPS - same behaviour. Also different other HTTPS URL are working fine.
Version v0.39.9
Screenshots

Issue Analytics
- State:
- Created 2 years ago
- Comments:9 (6 by maintainers)
Top Results From Across the Web
8 Ways to Fix SSL Connection Errors on Various Browsers ...
Discover 8 effective ways to fix SSL connection errors on various browsers, OSs, and platforms. Don't scare your users away.
Read more >pip install fails with "connection error: [SSL - Stack Overflow
Using --verbose shows that without --trusted-host , the HTTPS connection fails, whereas the same HTTPS connection is attempted (not HTTP) with --trusted-host ...
Read more >What Does SSL Connection Error Mean and How to Fix It
When a website has an SSL badge, you'll see “https://” in front of its domain name, instead of the classic “http://”. This means...
Read more >How to Fix "Your Connection Is Not Private" Error - Hostinger
No need to panic when the “Your connection is not private” message appears. We'll offer you multiple simple solutions on how to fix...
Read more >Fix connection errors - Google Chrome Help
Fix most connection errors. If you go to a website and get an error, try these troubleshooting steps first: Check the web address...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

So I’ve found the root cause / solution:
In your default docker-compose.yaml you set
Now when you ping from docker to changedetection.io it is not addressing your domain but the service! Therefore it will never reach your server!
Changing to
solves this issue.
So my proposal also to change that in your default docker-compose file.
This may affect the new “a new version is available” check too