Is there anyway to have ssl configured for dynamic mass virtual hosts?
ssl_certificate ssl/$host/mysite.com.crt;
ssl_certificate_key ssl/$host/mysite.com.key;
ssl_session_timeout 5m;
ssl_protocols SSLv3 TLSv1;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+EXP;
ssl_prefer_server_ciphers on;
server {
listen 80;
server_name $host;
root /var/www/html/$host;
}
Using something like this to select the right ssl cert for the host.
I have several thousand sites that need a different document roots and some need ssl capability .