SSL/TLS

Guides, best practices, and technical explanations related to SSL/TLS certificates, HTTPS, encryption, and secure communications.

TLS in Docker: Securing Containers Without Losing Your Mind

When I first started running services in Docker, TLS felt like an afterthought. Everything was on localhost or an internal network, so I figured it didn’t matter much. Then I started exposing services, connecting containers to external databases, and dealing with client certificate authentication — and suddenly TLS was everywhere. Here’s what I’ve actually learned

TLS in Docker: Securing Containers Without Losing Your Mind Read Post »

PKCS#12 / PFX Files: Complete Guide to Creating, Extracting, and Troubleshooting

I’ve dealt with PKCS#12 files (also called PFX or P12 — the terms are interchangeable) more times than I’d like. Mostly when migrating certificates to Windows, working with Java keystores, or handing certificates off to developers who aren’t familiar with PEM files. The format is useful but the tooling around it is inconsistent and the

PKCS#12 / PFX Files: Complete Guide to Creating, Extracting, and Troubleshooting Read Post »

How to Convert SSL Certificates Between Formats Using OpenSSL

Converting SSL certificates is one of those tasks that looks straightforward until you’re knee-deep in error messages at 11 PM before a deployment. I’ve converted hundreds of certificates across different server setups, and the same situations come up repeatedly: CA sends PEM, server needs PFX. Client needs Java keystore, you only have CRT and KEY

How to Convert SSL Certificates Between Formats Using OpenSSL Read Post »

PostgreSQL Backup and Restore on Linux

Databases are special. Regular file backups don’t work well for PostgreSQL — backing up the data directory while the server is running is likely to give you a corrupt snapshot. You need PostgreSQL-aware tools. Here’s what I actually use for backing up PostgreSQL databases, from simple single-database dumps to continuous archiving. pg_dump — The Standard

PostgreSQL Backup and Restore on Linux Read Post »

Scroll to Top