DevOps & SysAdmin

Automation, scripting, infrastructure management for DevOps, SysAdmin and other Tech stuff

OCSP Stapling in Nginx: What It Is, Why It Matters, and How to Configure It

I spent a while ignoring OCSP stapling because it felt like an advanced optimization that wasn’t worth the effort. Then I actually measured the TLS handshake times on a server without it and realized visitors were waiting for an extra round-trip to a CA’s OCSP server on every new connection. That changes the calculus. What […]

OCSP Stapling in Nginx: What It Is, Why It Matters, and How to Configure It 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 »

Zabbix SSL Certificate Monitoring

I do not like certificate expiry surprises, and I do not trust calendar reminders as the only defense. Certificates expire on weekends, behind CDNs, on forgotten admin panels, on odd ports, and on third-party services nobody thought to inventory. That is why I prefer central monitoring over scattered shell scripts living on random servers. Zabbix

Zabbix SSL Certificate Monitoring Read Post »

Installing and Configuring SSL in Apache: Virtual Hosts, Modules, and Best Practices

Apache’s approach to SSL is fundamentally different from Nginx. Where Nginx has SSL baked in, Apache uses a module system — mod_ssl — that needs to be explicitly enabled. The configuration syntax is also more verbose. That’s not necessarily bad; Apache’s granular configuration options can be very useful. But it means more places where things

Installing and Configuring SSL in Apache: Virtual Hosts, Modules, and Best Practices Read Post »

Scroll to Top