The port variable is coded fixed in the apache plugin, but you dont have to change any code to use custom ports. Just replace this line in the template:
Code:
<VirtualHost {tmpl_var name='ip_address'}:{tmpl_var name='port'}>
with e.g.:
Code:
<tmpl_if name='ssl_enabled'>
<VirtualHost {tmpl_var name='ip_address'}:1234>
<tmpl_else>
<VirtualHost {tmpl_var name='ip_address'}:12345>
</tmpl_if>
where 1234 is your new ssl port and 12345 is your new non ssl port.
Recent comments
1 day 7 hours ago
1 day 7 hours ago
1 day 12 hours ago
1 day 19 hours ago
1 day 20 hours ago
1 day 21 hours ago
2 days 1 hour ago
2 days 8 hours ago
2 days 12 hours ago
2 days 13 hours ago