# Example Apache Link via mod_jk # ------------------------------ # $Id: mod_jk.conf,v 1.1 2005/09/04 18:20:16 jjanke Exp $ # This applies to mod_jk (not mod_jk2) # http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk/quickhowto.html # Download http://apache.tarchive.com/jakarta/tomcat-connectors/jk/binaries/ # Update http.conf with something like: # Include $ADEMPIERE_HOME/jboss/mod.jk .. or directly: LoadModule jk_module modules/mod_jk.so AddModule mod_jk.c # Worker File Link JkWorkersFile /etc/httpd/conf/workers.properties #JkWorkersFile $ADEMPIERE_HOME/jboss/workers.properties # Log JkLogFile /var/log/httpd/mod_jk.log JkLogLevel info JkLogStampFormat "[%a %b %d %H:%M:%S %Y] # JkOptions indicate to send SSL KEY SIZE, JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories # JkRequestLogFormat set the request format JkRequestLogFormat "%w %V %T" # General mapping - send *.jsp to mod_jk JkMount /*.jsp ajp13 JkMount /*/servlet/ ajp13 # Example host DocumentRoot /var/www/html ServerName www.adempiere.com ErrorLog /var/log/httpd/com_error_log CustomLog /var/log/httpd/com_access_log combined JkMount *.jsp ajp13 JkMount /wstore/* ajp13 JkMount /adempiere/* ajp13 JkMount /invoker/* ajp13 # Prevent External Access to RMI_HTTP tunnel order deny,allow deny from all allow from localhost 192.168.168 # Prevent External Access to Management Console order deny,allow deny from all allow from localhost 192.168.168 # Prevent Access AllowOverride None deny from all