question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

HTTPS Connection error for "https://changedetection.io/CHANGELOG.txt"

See original GitHub issue

After 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 grafik

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:9 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
adb76commented, Mar 10, 2022

So I’ve found the root cause / solution:

In your default docker-compose.yaml you set

services:
    changedetection.io:

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

services:
    changedetection:
      image: ghcr.io/dgtlmoon/changedetection
      container_name: changedetection
      hostname: changedetection

solves this issue.

So my proposal also to change that in your default docker-compose file.

0reactions
dgtlmooncommented, Mar 12, 2022

This may affect the new “a new version is available” check too

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found