I had a need to do something like that a while ago. I used a custom-template, and it worked for me. You can try this if you want.
mkdir -p /etc/e-smith/templates-custom/etc/squid/squid.conf
cd /etc/e-smith/templates-custom/etc/squid/squid.conf
cp /etc/e-smith/templates/etc/squid/squid.conf/20ACL15SSL_ports .
pico -w /20ACL15SSL_ports
Make the file look like:
{
my @ports = split(",", ($squid{SSLPorts} || "443,563") );
return "acl SSL_ports port @ports";
}
Exit and save, then
config setprop squid SSLPorts 443,563,2083
expand-template /etc/squid/squid.conf
cat /etc/squid/squid.conf #just to look at the file to verify your port(s) are listed
/etc/rc7.d/S90squid restart
Try your access through your squid proxy.
Good Luck,
John