Found a list of Useful OpenSSL Commands today. Mostly I wanted to get the subject out of a cacert.pem file which I wasn’t sure of:
openssl x509 -text -noout -in hostcert.pem
Found a list of Useful OpenSSL Commands today. Mostly I wanted to get the subject out of a cacert.pem file which I wasn’t sure of:
openssl x509 -text -noout -in hostcert.pem
An article on The 5 Hardest Parts of Programming which discusses optimisation, networking, security, reliability and scalability.
A talk Modern Memcached by Alan Kasindorf.
Saw this Portable Executable 101 – a windows executable walkthrough today. Pretty cool visualisation.
A talk on the future of authenticity:
BlackHat USA 2011: SSL And The Future Of Authenticity.
Today I was looking up the syntax to create a MySQL database from the command-line and found instructions on Snipplr. I haven’t seen snipplr before. I guess I’ll have to spend some time one day browsing the popular snippets.
Learned about Apache module mod_macro today.
I was trying to configure Digest authentication in Apache and I was getting Internal Server Error 500 when trying to access my site. The Apache error log reported: “configuration error: couldn’t check user. No user file?”
Turned out the problem was that I hadn’t installed the Digest auth module. So the fix was:
# a2enmod auth_digest # apache2ctl graceful
Reading about Subversion Path-Based Authorization.
Reading about Digest authentication in Apache for Subversion.