I did this with mod rewrite in /root/ispconfig/scripts/lib/config.lib.php
You can also do this in each site under apache directives, but I wanted it to be global.
In /root/ispconfig/scripts/lib/config.lib.php under "function make_vhost($server_id)"
REPLACE
$web_httpd_include = $web["web_httpd_include"];
WITH
//Cpanel Add Directives
$CP_directives = "<IfModule mod_rewrite.c>\n\rRewriteEngine on\n\rRewriteRule ^/cpanel$
https://www.mysite.com:81 [NC]\n\r</IfModule>";
if(isset($web["web_httpd_include"]) && $web["web_httpd_include"] != "")$CP_directives.="\n\r";
$web_httpd_include = $CP_directives.$web["web_httpd_include"];
instead of mysite.com you could use a variable that references each site so that when they are in the control panel they always see there domain, but you would need a wild card certificate if you are going to use https.
You may also place other global directives in there like open_base_dir or disable_functions. This is perfect becuase it does not have an affect on ispconfig's control panel.
Recent comments
1 day 6 hours ago
1 day 8 hours ago
1 day 20 hours ago
1 day 23 hours ago
2 days 3 hours ago
2 days 9 hours ago
2 days 18 hours ago
2 days 20 hours ago
3 days 4 hours ago
3 days 6 hours ago