Hi. I am having an issue that likely has a simple fix. Being a newbie
I simply cannot figure it out and was hoping someone could help. First
off, I am running OpenBD on apache2 (Ubuntu server 8.04 LTS). For
example's sake, I'm attempting to set up my site, "site 1".  I've
installed everything, mapped "site1.local" to my localhost. My apache
virtualhost entry and Tomcat server.xml host entry are as follows:

<VirtualHost *>
    DocumentRoot /opt/tomcat/webapps/openbd/site1

    ServerName site1.com
    ServerAlias *.site1.com

    ProxyPass / http://site1.local:8080/site1/
    ProxyPassreverse / http://site1.local:8080/site1/
    HostnameLookups Off

    DirectoryIndex index.cfm router.cfm
</VirtualHost>

<Host name="site1.local">
    <Context path="" docBase="/opt/tomcat/webapps/openbd/site1/" />
</Host>

That said. I cannot get this to work. I get a “HTTP Status 404” error.
I know the proxypass and openbd is working because if I alter the
virtual host proxypass and tomcat host docBase to the following then
it works. I get the openbd default page:

<VirtualHost *>
    DocumentRoot /opt/tomcat/webapps/openbd/site1

    ServerName site1.com
    ServerAlias *.site1.com

    ProxyPass / http://site1.local:8080/
    ProxyPassreverse / http://site1.local:8080/
    HostnameLookups Off

    DirectoryIndex index.cfm router.cfm
</VirtualHost>

<Host name=" site1.local">
    <Context path="" docBase="/opt/tomcat/webapps/openbd/" />
</Host>

I have been toiling with this for quite some time. ANY help with this
would be HUGELY appreciated.

--~--~---------~--~----~------------~-------~--~----~
Open BlueDragon Public Mailing List
 http://groups.google.com/group/openbd?hl=en
 official site @ http://www.openbluedragon.org/

!! save a network - trim replies before posting !!
-~----------~----~----~----~------~----~------~--~---

Reply via email to