Home

Search results

"tag:"ssl""


Title and summary Date/time
1
Add CA Certificate To Java Keystore
It seems Oracle has changed parameters for the Java keytool command... keytool -importcert -file ca-20130221.cer -alias wlvds -keystore cacerts -keypass changeit List certificates in a keystore... .\bin\keytool.exe -list -cacerts
Oct 15, 2013
11:28:00 PM
2
OpenSSL Quick Guide
Every year, when my websites' SSLcertificates expire I have to relearn how to generate them all over again. It's not that I forget the concepts, but I can never remember the exact syntax of the commands. This guide expects that you have OpenSSLinstalled ...
Jul 8, 2011
11:51:00 PM
3
Apache HTTPD - Force HTTP Traffic to HTTPS
The following configuration at the VirtualHost level will force users from an unencrypted VirtualHost to one with the same host-name using SSL... RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}...
May 4, 2011
9:30:00 AM