I am planning on disabling TLSV1 on an apache 2.4 server running on Ubuntu 14.04. Before doing this I thought it would be good to analyse how many users this would impact. I've read through the apache log documentation, which should allow me to log environment variables.
http://httpd.apache.org/docs/2.4/mod/mod_log_config.html
I have a RewriteRule I set up redirect users with TLSV1 which works fine, this rule looks like this.
RewriteCond %{SSL:SSL_PROTOCOL} ^TLSv1$ RewriteRule ^/test* /bad-ssl.html [L] Which works perfectly. However I cannot get the log module to write SSl environment variables.
CustomLog ${APACHE_LOG_DIR}/ssl.log "%a \"%{SSL_PROTOCOL}e\" \"%{SSL:SSL_PROTOCOL}e\" \"%{evn:SSL_PROTOCOL}e\"" What am I missing?