File: //proc/self/root/scripts/initsslhttpd
#!/usr/local/cpanel/3rdparty/bin/perl
# cpanel - initsslhttpd Copyright(c) 2015 cPanel, Inc.
# All rights Reserved.
# copyright@cpanel.net http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited
use strict;
use Cpanel::HttpUtils;
use Cpanel::Config::Httpd ();
exit if Cpanel::Config::Httpd::is_ea4();
my $apache_version = Cpanel::HttpUtils::get_current_apache_version_key();
if ($apache_version) {
my $script = '/usr/local/cpanel/scripts/initsslhttpd' . $apache_version;
system($script);
}