i am personnaly using MOD_WEBAPP with success.
If that can help you, here is:

------- httpd conf: -------

WebAppConnection myApp Connection warp 127.0.0.1:10008
WebAppDeploy myApp myApp Connection /

------- myApp conf: -------

<Context path="" docBase="./myApp" reloadable="true"
debug="0">

<Logger className="org.apache.catalina.logger.FileLogger"
prefix="myApp_log." suffix=".txt"
timestamp="true"/>
<Loader checkInterval="1"
className="org.apache.catalina.loader.WebappLoader"/>
<Manager debug="99"/>

</Context>

------- server.xml conf: -------

<Service name="Tomcat-Apache">

<Connector className="org.apache.catalina.connector.warp.WarpConnector"
port="10008" minProcessors="5" maxProcessors="75"
enableLookups="true" appBase="webapps"
acceptCount="10" debug="0"/>

<Engine className="org.apache.catalina.connector.warp.WarpEngine"
name="Apache" debug="0">

<Logger className="org.apache.catalina.logger.FileLogger"
prefix="apache_log." suffix=".txt"
timestamp="true"/>

<Realm className="org.apache.catalina.realm.MemoryRealm" />

</Engine>

</Service>


David Worms

On Saturday, October 19, 2002, at 01:42 AM, slava zimine wrote:

Hi.

I've got a tomcat/apache related question rather then purely turbine's.
tomcat version 1.4.10.
apache version 1.2.23

Yet maybe there are folks in this list who did it.

For my turbine app recently went in production i'm trying to hide
tomcat behind apache, to process all requests via port 80 and not 8080


I cannot use proxying because i need a security check with
getRemoteHost() in a couple of screens.

Hence i'm trying to use mod_jk

Having followed instructions in tomcat_documentation for mod_jk

i got for a moment "Forbidden" error


my lines added in httpd.conf

<VirtualHost 192.168.1.3:80>
DocumentRoot /data/soft/tomcat/webapps/fftt
ServerName japgod.mine.nu
JkMount /*.jsp ajp13
JkMount /servlet/* ajp13
</VirtualHost>


i guess i need to enter to httpd.conf

the proper <Directory> entry


Does anybody has a working config for mod_jk
for a turbine app?

thank you for your help

slava






--
To unsubscribe, e-mail: <mailto:turbine-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:turbine-user-help@;jakarta.apache.org>


--
To unsubscribe, e-mail:   <mailto:turbine-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:turbine-user-help@;jakarta.apache.org>

Reply via email to