I've got tomcat 5.5.17 and apache 2.2.2 installed and I'm trying to set
up an AJP1.3 connector to proxy content from apache to tomcat. However,
no matter what I've tried so far, tomcat always responds with a
"requested resource not available" error.
Following are the settings in server.xml:
<Connector port="8009" enableLookups="false" proxyName="ironwire.net"
proxyPort="80" protocol="AJP/1.3" maxThreads="50" minSpareThreads="2"
maxSpareThreads="25" address="127.0.0.1" />
<Engine name="localhost" defaultHost="localhost">
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase" />
<Host name="localhost" appBase="/usr/local" unpackWARs="true"
autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">
<Context path="" docBase="tomcat/webapps" />
<Context path="/" docBase="www/ironwire.net" reloadable="true" />
</Host>
</Engine>
And, in httpd.conf, I have:
ProxyRequests Off
ProxyPass / ajp://localhost:8009/
Does anybody have any experience with this?
Thanks,
-- Steven
---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]