There are a few things to get right -- took me a while the first time.
There is (1) the Apache http.conf, but also  (2) Tomcat  (if
that's what you are using) server.xml and also (3)
WEB-INF/config/opencms-system.xml<br>
<br>
I've cut and pasted the relevant bits from my config for a domain.<br>
<br>
<br>
1. My Apache Config:<br>
<br>
<VirtualHost *:80><br>
    ServerName <a href="http://oranmore.galway.net">oranmore.galway.net</a><br>
<br>
    ServerAdmin <a href="mailto:joe@galway.net">joe@galway.net</a><br>
    DocumentRoot "/opt/tomcat/jakarta-tomcat-5.5.9/webapps/ROOT/"<br>
    ErrorLog logs/error.log<br>
<br>
    # Log only non-redirect requests in "normal" log file<br>
    SetEnvIf Request_URI "\/opencms\/*" redirect<br>
    CustomLog logs/oranmore-access_log common env=!redirect<br>
<br>
   
ProxyPass        
/opencms/                
!<br>
    RedirectPermanent
/opencms/                
<a href="http://oranmore.galway.net/">http://oranmore.galway.net/</a><br>
<br>
   
ProxyPass        
/resources/              
!<br>
   
ProxyPass        
/export/                 
!<br>
<br>
   
ProxyPass        
/                        
<a href="http://localhost:8083/opencms/">http://localhost:8083/opencms/</a><br>
    ProxyPassReverse 
/                        
<a href="http://localhost:8083/opencms/">http://localhost:8083/opencms/</a><br>
</VirtualHost><br>
<br>
<br>
<br>
2. Tomcat  conf/server.xml:<br>
<br>
 <Connector port="8083" maxHttpHeaderSize="8192"<br>
              
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"<br>
               
proxyName="<a href="http://oranmore.galway.net">oranmore.galway.net</a>" proxyPort="80"<br>
                useURIValidationHack="false"<br>
              
enableLookups="false" redirectPort="8443" acceptCount="100"<br>
              
connectionTimeout="20000" disableUploadTimeout="true" /><br>
<br>
<br>
3. WEB-INF/config/opencms-system.xml  under <sites> tag:<br>
<br>
<site server="<a href="http://oranmore.galway.net">http://oranmore.galway.net</a>" uri="/sites/Oranmore/" /><br>
<br>
<br>
Finally restart everything (Apache + Tomcat).<br>
<br>
<br><br><div><span class="gmail_quote">On 9/7/05, <b class="gmail_sendername">Jordan Harrison</b> <<a href="mailto:jordo@jordoman.com">jordo@jordoman.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Thanks Joe. I've set up all the config, but when I hit www.mysite.conm I get the Catalina index.html<br><br>I think the problem is in my Virtual hosts, can you see anything wrong with this?<br><br><VirtualHost *><br>
    ServerName <a href="http://www.mysite.com">www.mysite.com</a><br>    ServerAdmin <a href="mailto:jordo@jordoman.com">jordo@jordoman.com</a><br>    DocumentRoot /data/tomcat/webapps/ROOT/<br><br>    # Log only non-redirect requests in "normal" log file
<br>    CustomLog /var/apache2/logs/mysite.log common<br><br>    # Multi domain configuration: All pages in "/mysite/" are to be served from domain "<a href="http://www.mysite.com">www.mysite.com</a>"<br>
    RedirectPermanent
/opencms/                
<a href="http://www.mysite.com">http://www.mysite.com</a><br><br>    ProxyPass        
/                        
<a href="http://localhost:8081/opencms/">http://localhost:8081/opencms/</a><br>    ProxyPassReverse  /                        
<a href="http://localhost:8081/opencms/">http://localhost:8081/opencms/</a><br></VirtualHost><br><br><br>Cheers for any pointers<br>Jordan<br><br><br>Joe Desbonnet said:<br>> Follow the same instructions as "Running multiple sites on OpenCms". It
<br>> assumes you will be using Apache for the front end.<br>><br>> Joe.<br>><br>><br>> On 9/7/05, Jordan Harrison <<a href="mailto:jordo@jordoman.com">jordo@jordoman.com</a>> wrote:<br>>><br>
>> Hi,<br>>><br>>> I have set up a few different websites running on OpenCMS. How do I get<br>>> OpenCMS to forward requests to the requested<br>>> site?<br>>><br>>> ie. how can I get...
<br>>><br>>> <a href="http://www.mywebsite.com">www.mywebsite.com</a> <<a href="http://www.mywebsite.com">http://www.mywebsite.com</a>><br>>><br>>> ...to forward to...<br>>><br>>> 
<a href="http://www.mywebsite.com/opencms/opencms/sites/mysite/index.html">http://www.mywebsite.com/opencms/opencms/sites/mysite/index.html</a><br>>><br>>> Surely there must be a config in OpenCMS that maps the two? Any help much
<br>>> appreicated.<br>>><br>>> (obviously I have my domain names pointing to my server, but currently it<br>>> takes me to the catalina index.jsp)<br>>><br>>> Cheers<br>>> Jordan
<br>>><br>>><br>>><br>>> _______________________________________________<br>>> This mail is send to you from the opencms-dev mailing list<br>>> To change your list options, or to unsubscribe from the list, please visit
<br>>> <a href="http://mail.opencms.org/mailman/listinfo/opencms-dev">http://mail.opencms.org/mailman/listinfo/opencms-dev</a><br>>><br>><br><br><br>--<br><br><br><br><br>_______________________________________________
<br>This mail is send to you from the opencms-dev mailing list<br>To change your list options, or to unsubscribe from the list, please visit<br><a href="http://mail.opencms.org/mailman/listinfo/opencms-dev">http://mail.opencms.org/mailman/listinfo/opencms-dev
</a><br></blockquote></div><br>