--- provision_ssl.drush.inc.1 2010-03-05 16:23:47.284416749 -0500 +++ provision_ssl.drush.inc 2010-03-05 16:23:57.135052967 -0500 @@ -20,6 +20,7 @@ * SSLEngine On */ function provision_ssl_provision_apache_vhost_config($url, $options) { + $config_path = drush_get_option('config_path'); if (!empty($options['ssl'])) { if ($options['ssl_redirect']) { // That's pretty bad, but if we *don't* do that, the vhost is never updated after the first write @@ -31,7 +32,7 @@ function provision_ssl_provision_apache_ $newoptions['site_port'] = 80; provision_write_config(drush_get_option('vhost_path') . '/' . $url . '_80', _provision_apache_redirect_template(), $newoptions); } - return array("php_value session.cookie_secure 1", "SSLEngine On"); + return array("Include $config_path/ssl.conf"); } else { return NULL; }