Dear All I am trying to run Httpd and Apache together for the first time ever, however, I have been unsuccessful in my endeavours. I have to sites that point to the same server: subdomain1.domain.com – normal HTML & PHP site subdomain2.domain.com – tomcat servlet with an instance of Atlassian Confluence which connects to port 8090 In the HTTPD conf file I the following: Listen: 80 #Listen: 8090 <Directory /> # AllowOverride none # Require all denied Options FollowSymLinks Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Order deny,allow Allow from all </Directory> ServerName: xxx.xxx.xxx.xxx ServerName: xxx.xxx.xxx.xxx:8090 <VirtualHost xxx.xxx.xxx.xxx > DocumentRoot "/www/html ServerName subdomain1.domain.com </VirtualHost> <VirtualHost xxx.xxx.xxx.xxx:8090> DocumentRoot "/opt/confluence/confluence" ServerName subdomain2.domain.com </VirtualHost> I am able to get the normal site, but not the tomcat instance. Will it be possible to point me in the right direction, please? Kind Regards Leon |