Skip to content

Instantly share code, notes, and snippets.

View kendrickjr's full-sized avatar

2.8Miles kendrickjr

View GitHub Profile
@kendrickjr
kendrickjr / SSLCertificate.md
Last active October 20, 2025 23:43
Configure Certificate in Dspace7 - Digicerts and others

Incase you want to set SSL certificates in Dspace 7(Digicert and others) but not letsencrypt certificate. This is bacuase Node.js does not trust the certificates presented by apache/nginx to resolve this you need to do this

Error: Using a Self-Signed SSL Certificate causes the Frontend to not be able to access the Backend

Steps:

1. openssl x509 -in myCAcert.crt -out <certname>.pem -outform PEM
  1. open .bashrc file
@kendrickjr
kendrickjr / ERROR connecting to REST API Error.md
Last active March 6, 2026 08:07
Dspace 8 ERROR connecting to REST API Error: unable to verify the first certificate

Fix the Certificate Chain (Recommended) You must ensure your web server provides the full chain (Leaf + Intermediate + Root). Concatenate Certificates: If you have a separate your_domain.crt and DigiCertCA.crt, you must combine them into a single file. Correct Order: Your Domain Certificate must come first, followed by the Intermediate(s).

cat navitrack_co_tz.key DigiCertCA.crt > navitrack_co_tz_fullchain.crt

Update Web Server(nginx) Configuration: