Here's the mod_jk.conf file

-----------------------------------------------------------------------
LoadModule jk_module libexec/mod_jk.so

JkWorkersFile /usr/local/tomcat/conf/workers.properties
JkLogFile /usr/local/tomcat/logs/mod_jk.log

JkLogLevel error

JkMount /*.jsp ajp13
JkMount /servlet/* ajp13

Alias /admin "/usr/local/tomcat/webapps/admin"
<Directory "/usr/local/tomcat/webapps/admin">
    Options Indexes FollowSymLinks
</Directory>

JkMount /admin/servlet/* ajp13
JkMount /admin/*.jsp ajp13

Alias /examples "/usr/local/tomcat/webapps/examples"
<Directory "/usr/local/tomcat/webapps/examples">
    Options Indexes FollowSymLinks
</Directory>

JkMount /examples/servlet/* ajp13
JkMount /examples/*.jsp ajp13

<Location "/examples/WEB-INF/">
    AllowOverride None
    deny from all
</Location>
<Location "/examples/META-INF/">
    AllowOverride None
    deny from all
</Location>
-----------------------------------------------------------------------

Here's the worker.properties file
-----------------------------------------------------------------------
# Define 1 real worker using ajp13
worker.list=worker1

# Set properties for worker1 (ajp13)
worker.worker1.type=ajp13
worker.worker1.host=127.0.0.1
worker.worker1.port=8009
worker.worker1.lbfactor=50
worker.worker1.cachesize=10
worker.worker1.cache_timeout=600
worker.worker1.socket_keepalive=1
worker.worker1.socket_timeout=300
-----------------------------------------------------------------------

--mikej
-=-----
mike jackson
[EMAIL PROTECTED] 

> -----Original Message-----
> From: Turner, John [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, February 26, 2003 12:03 PM
> To: 'Tomcat Users List'
> Subject: RE: problems compiling and using mod_jk
> 
> 
> 
> I'd have to see the files.
> 
> John
> 
> > -----Original Message-----
> > From: Mike Jackson [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, February 26, 2003 2:59 PM
> > To: Tomcat Users List
> > Subject: RE: problems compiling and using mod_jk
> > 
> > 
> > Hmm, I'm still having problems.  I took my mod_jk.conf from 
> > tomcat 3 and
> > striped out everything except for the examples webapp and put 
> > in the minimal
> > workers.properties file from the web site.  I can access the 
> > nbrguess.jsp
> > file from tomcat if I go to 8080, but when I try to get to it 
> > via apache it
> > gives me a error.  There's nothing in the log file to point 
> > me anywhere, it
> > looks like things on the tomcat side are running, I've got 
> > startup messages
> > from apj13 threads, but I don't seem to be talking to them.  
> > Any ideas?
> > 
> > --mikej
> > -=-----
> > mike jackson
> > [EMAIL PROTECTED]
> > 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to