Here is sample (also my production copy) and I hope it helps you out a bit;
mod_jk.conf:
# Replace jsp-hostname with the hostname of your JSP server, as
# specified in workers.properties.
#
<IfModule mod_jk.c>
JkWorkersFile etc/apache/workers.properties
JkLogFile /var/log/jk.log
JkShmFile /var/log/jk-runtime-status
JkLogLevel error
# Sample JkMounts. Replace these with the paths you would
# like to mount from your JSP server.
#JkMount /*.jsp jsp-hostname
#JkMount /servlet/* jsp-hostname
#JkMount /examples/* jsp-hostname
</IfModule>
workers.properties:
# Incredibly simple workers.properties file, intended for connecting
# to one host, via AJP13. See the tomcat documentation for
# information on more exotic configuration options.
#
# Change jsp-hostname to the hostname of your JSP server.
#
worker.list=link
worker.link.port=8009
worker.link.host=link.enhancededge.com
worker.link.type=ajp13
worker.link.lbfactor=1
httpd.conf (in the appropriate area):
<VirtualHost 216.58.87.200>
DocumentRoot /usr/local/www/data/results.bigsearch.ca/
ServerName results.bigsearch.ca
JkMount /* link
CustomLog /var/log/httpd/results.bigsearch.ca.log combined
</VirtualHost>
----- Original Message ----
From: monkeynuts84 <[EMAIL PROTECTED]>
To: [email protected]
Sent: Friday, August 10, 2007 6:47:12 PM
Subject: mod_jk
Hi,
I'm having problems getting mod_jk to work. I've moved the html files to
the apache webroot. When I set up mod_jk and start tomcat the site can't
seem to find the search.jsp. Does anyone have a working example config for
mod_jk that I can cross reference with mine?
Thanks in advance.
--
View this message in context:
http://www.nabble.com/mod_jk-tf4251603.html#a12100369
Sent from the Nutch - User mailing list archive at Nabble.com.