Scalix Virtual Host
Posted: Sat Jun 09, 2007 5:52 pm
I’m trying to install Scalix on my Fedora 5 box but I want to configure it to use port 8080 rather than port 80 –
This is what I have changed:-
N: /etc/opt/scalix-tomcat/connector/ajp/instance-HOSTNAME.conf
Code:
<VirtualHost hostname.domain.tld:80>
Include /etc/opt/scalix-tomcat/connector/ajp/app-HOSTNAME.*.conf
</VirtualHost>
to
Code:
<VirtualHost hostname.domain.tld:8080>
Include /etc/opt/scalix-tomcat/connector/ajp/app-HOSTNAME.*.conf
</VirtualHost>
IN: /etc/opt/scalix-tomcat/connector/jk/instance-HOSTNAME.conf
Code:
<VirtualHost hostname.domain.tld:80>
Include /etc/opt/scalix-tomcat/connector/jk/app-HOSTNAME.*.conf
</VirtualHost>
to
Code:
<VirtualHost hostname.domain.tld:8080>
Include /etc/opt/scalix-tomcat/connector/jk/app-HOSTNAME.*.conf
</VirtualHost>
IN: /etc/httpd/conf/httpd.conf
added :
Code:
Listen 8080
IN /var/opt/scalix/bi/res/config/res.properties
Quote:
res.tomcat.tcp.port=
to
Quote:
res.tomcat.tcp.port=8080
I have modified the above settings so I can now access webmail by typing http:myip:8080/webmail which works but as I have multiple virtual test sites I want to link scalix webmail to a public adress / virtual host through my apache httpd.conf file but I believe that I will first need to know the physical web content location before I can do this – I’m still quite new to the Linux world so if anyone knows of a better way of doing this please let me know - thanks

This is what I have changed:-
N: /etc/opt/scalix-tomcat/connector/ajp/instance-HOSTNAME.conf
Code:
<VirtualHost hostname.domain.tld:80>
Include /etc/opt/scalix-tomcat/connector/ajp/app-HOSTNAME.*.conf
</VirtualHost>
to
Code:
<VirtualHost hostname.domain.tld:8080>
Include /etc/opt/scalix-tomcat/connector/ajp/app-HOSTNAME.*.conf
</VirtualHost>
IN: /etc/opt/scalix-tomcat/connector/jk/instance-HOSTNAME.conf
Code:
<VirtualHost hostname.domain.tld:80>
Include /etc/opt/scalix-tomcat/connector/jk/app-HOSTNAME.*.conf
</VirtualHost>
to
Code:
<VirtualHost hostname.domain.tld:8080>
Include /etc/opt/scalix-tomcat/connector/jk/app-HOSTNAME.*.conf
</VirtualHost>
IN: /etc/httpd/conf/httpd.conf
added :
Code:
Listen 8080
IN /var/opt/scalix/bi/res/config/res.properties
Quote:
res.tomcat.tcp.port=
to
Quote:
res.tomcat.tcp.port=8080
I have modified the above settings so I can now access webmail by typing http:myip:8080/webmail which works but as I have multiple virtual test sites I want to link scalix webmail to a public adress / virtual host through my apache httpd.conf file but I believe that I will first need to know the physical web content location before I can do this – I’m still quite new to the Linux world so if anyone knows of a better way of doing this please let me know - thanks
