mirror of
https://github.com/binwiederhier/ntfy.git
synced 2026-05-09 16:35:53 +02:00
[GH-ISSUE #910] SSL Certificate error #640
Labels
No labels
ai-generated
android-app
android-app
android-app
🪲 bug
build
build
dependencies
docs
enhancement
enhancement
🔥 HOT
in-progress 🏃
ios
prio:low
prio:low
pull-request
question
🔒 security
server
server
unified-push
web-app
website
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ntfy#640
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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 @hunnomad on GitHub (Oct 7, 2023).
Original GitHub issue: https://github.com/binwiederhier/ntfy/issues/910
The certificate used by Certbot is set on the Nginx server, and the ntfy server is behind Cloudflare.
@babiloof commented on GitHub (Oct 17, 2023):
I had the same issue and in my case i had generated a cert.crt file for Nginx reverse proxy with the command
openssl pkcs12 -in cert.pfx -clcerts -nokeys -out cert.crt
witch does not include intermediate certificates so i removed "-clcerts" from the command and generated a new cert.crt file with the intermediate certificates included. Restarted the Nginx reverse proxy with the new cert.crt file and the error was gone.
So i belive the issue was that intermediate certificates was missing.
@binwiederhier commented on GitHub (Nov 6, 2023):
Just from the error message "trust anchor is missing", this seems to be the case.
certbotprovides acert.pemand afullchain.pem. Be sure to pickfullchain.pem.Closing this issue as it is not related to ntfy at all.