function Provision_Service_http_https_apache::init_server in Aegir HTTPS 7.3
Initialize the configuration files.
These config classes are a mix of the HTTPS and Non-HTTPS apache classes. In some cases they extend the Apache classes too.
Overrides Provision_Service_http_https::init_server
File
- submodules/
apache_https/ drush/ Provision/ Service/ http/ https/ apache.php, line 34
Class
- Provision_Service_http_https_apache
- Apache HTTPS service class.
Code
function init_server() {
parent::init_server();
// Replace the server config with our own. See the class for more info.
$this->configs['server'][] = 'Provision_Config_Apache_Https_Server';
// Just re-use the standard platform config.
$this->configs['platform'][] = 'Provision_Config_Apache_Platform';
$this->configs['site'][] = 'Provision_Config_Apache_Https_Site';
}