On Wed, Feb 16, 2011 at 21:28, Jason Michael <[email protected]> wrote:
> Can someone direct me to a good howto?


http://wiki.apache.org/tomcat/FAQ/Connectors

For mod_jk:
https://wiki.duraspace.org/display/DSPACE/ModJk
http://wiki.lib.sun.ac.za/index.php/SUNScholar/Prepare_Ubuntu#Step_6._Setup_Apache2_Tomcat_6_Jakarta_Connector


For mod_proxy this is very simple:

apache's httpd.conf:
<VirtualHost *:80>
        ServerName yourserver.edu

        ProxyPass / ajp://localhost:8009/ retry=10
        ProxyPassReverse / ajp://localhost:8009/
</VirtualHost>

tomcat's server.xml:
    <Connector port="8009"
               enableLookups="false" redirectPort="8443" protocol="AJP/1.3"
               URIEncoding="UTF-8" />

Regards,
~~helix84

------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
DSpace-tech mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dspace-tech

Reply via email to