This should be like any other web application.  I just
set it up as a test on my machine and it works fine.

Take a look at: 

http://tomcat.apache.org/connectors-doc/

1) Set up a standard workers.properties file (example)

# only one worker
# a better name is called for
worker.list=myworker

#
# worker1 specs
#
worker.myworker.typw=ajp13
worker.myworker.host=localhost
worker.myworker.port=8009
worker.myworker.socket_timeout=60

2) Load the mod_jk module in httpd.conf
#
# mod_jk
#
LoadModule jk_module           modules/mod_jk.so
JkWorkersFile                  conf/workers.properties
JkLogFile                      logs/mod_jk.log

3) Set up a JkMount in httpd.conf - something like:

JkMount /mmbase/* myworker

where myworker has been defined in the
workers.properties file.

This basically sends everything from:

www.mydomain.com/mmbase/* to Tomcat.

There are other ways of doing this, but this is sort
of the minimalist approach.

Directory definitions and aliases in httpd.conf can be
useful (for example, to block hosts).

HTH
/mde/
just my two cents . . .

--- "D. Salemink Klikstudio"
<[EMAIL PROTECTED]> wrote:

> Does anybody have experience setting up the
> workers.properties file to
> serve mmbase through apache?
> -- 
> D. Salemink
> Zomerdijkstraat 1-11079WX Amsterdam
> +31207726869 +31651611510
> 
> Nieuwe media cursussen http://www.klikstudio.net
> Webdesign en hosting http://www.klikstudio.nl
> 
>
---------------------------------------------------------------------
> To start a new topic, e-mail:
> users@tomcat.apache.org
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to