On Monday 16 January 2006 12:33, Shawn wrote: > Thanks for the tip Aaron. > > This was one of the first things that was tried - but for some reason the > Kolab admin page refused to come up. But that was only with the Listen > line changed - I suspect there's a few other places that also need to be > changed. Either that, or it was a bad idea to try this at 2:00am... :) >
You need to edit /kolab/etc/kolab/templates/httpd.conf.template. The listen directives are around line 108. Listen 8000 Listen 4430 You also need to change the default virtual host directive to include the port redirection. This is around line 39 <VirtualHost _default_:4430> You also need to change the Location directives for the error documents to redirect the browser to the admin login. This is around line 134. <Location /> ErrorDocument 403 https://@@@fqdnhostname@@@:4430/admin/ </Location> <Location /fbview> ErrorDocument 403 https://@@@fqdnhostname@@@:4430/fbview/ </Location> After you save the file you need to run /kolab/sbin/kolabconf. It will make the required changes and restart the apache server for you. Andy _______________________________________________ clug-talk mailing list [email protected] http://clug.ca/mailman/listinfo/clug-talk_clug.ca Mailing List Guidelines (http://clug.ca/ml_guidelines.php) **Please remove these lines when replying

