albbadia
(Albbadia)
1
Ubuntu Server in DigitalOcean
Nginx as proxy with Let's Encrypt for TLS
Swift 5.3.3
Vapor 4.0
Guide to set up APNS: https://docs.vapor.codes/4.0/apns/
I got Apple Push Notification Service working on Vapor 4.0 localhost (127.0.0.1:8080), it sends notifications to my device without problems. But when I deploy it to my server, I'm getting this error:
[ INFO ] GET /push
[ ERROR ] handshakeFailed(NIOSSL.BoringSSLError.sslError([Error: 268435581 error:1000007d:SSL routines:OPENSSL_internal:CERTIFICATE_VERIFY_FAILED]))
I cannot find the error source. Someone with the same problem, or any tips?
1 Like
sadiq81
(Tommy Sadiq Hinrichsen)
2
Not necessarily a push problem, are you using Postgres or MySQL database?
0xTim
(Tim)
3
This is to do with Apple's intermediate cert which is not trusted by Ubuntu by default (that has changed and should be rolling out soon I believe). You need to add the cert to your trust store with
curl --max-time 300 --retry 5 --retry-delay 1 --retry-max-time 900 --silent -o /usr/local/share/ca-certificates/geotrust.crt https://www.geotrust.com/resources/root_certificates/certificates/GeoTrust_Global_CA.pem
update-ca-certificates
5 Likes
albbadia
(Albbadia)
4
THANKS!!
All the info about that error points to generic mysql error, with no more information. But you saved my life with that tip. Thank you so much.