Open maaaaz opened 1 year ago
Noticed here as well, relying heavily on this service. Hope Calidog manages to get the server back up!
Do you know some alternative instances of certstream-server
not being the official one "certstream.calidog.io" ?
Another solution could be to setup ourself an instance of a certstream server, either the official one; or the promising alternative https://github.com/d-Rickyy-b/certstream-server-go
EDIT :
As I am using certstream
in a github action workflow, I added a custom instanciation of a local alternative server with this snippet:
cd /tmp/
wget -nv "https://github.com/d-Rickyy-b/certstream-server-go/releases/download/v1.4.0/certstream-server-go_1.4.0_linux_amd64" && chmod u+x ./certstream-server-go_1.4.0_linux_amd64
cat > /tmp/config.yaml <<EOL
webserver:
listen_addr: "127.0.0.1"
listen_port: 8080
full_url: "/full-stream"
lite_url: "/"
domains_only_url: "/domains-only"
cert_path: ""
cert_key_path: ""
prometheus:
enabled: false
listen_addr: "0.0.0.0"
listen_port: 8080
metrics_url: "/metrics"
expose_system_metrics: false
real_ip: false
whitelist:
- "127.0.0.1/8"
EOL
nohup ./certstream-server-go_1.4.0_linux_amd64 > nohup.out 2> nohup.err < /dev/null &
certstream --url ws://127.0.0.1:8080
See https://github.com/appleboy/ssh-action/issues/40#issuecomment-602325598 for the nohup
magic.
Good stuff, thanks for pointing us in the right direction!
Really appreciate this thread! Saved me a bunch of time after needing to migrate as well.
Seems like the certstream service has been repaired.
Service down again, cf. https://github.com/CaliDog/certstream-python/issues/62
Server went down from 3rd Feb 2024. Seems subscription was for only 1 year exactly.
Many thanks for this alternative. Go server works fine. You can change ip bind as you need. below will keep it for local use only:
webserver:
listen_addr: "127.0.0.1"
listen_port: 8080
ofc, monitoring over prometheus is optional. Try it out locally and should solve your problem.
Hello there,
Since today, Tuesday December 5 04:27:42 UTC 2023,
certstream-python
can not connect to certstream:And a visit to https://certstream.calidog.io/ returns a CloudFlare 521 error:
Any insight about the recovery of this awesome service ?
Cheers.