Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

In sakai.properties, adjust your serverUrl:

Code Block

serverUrl=http://localhost:80

...

If you are just running Tomcat standalone you would define a connector on port 8080 like this:

Code Block

<!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
    <Connector port="8080" maxHttpHeaderSize="8192"
               maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
               enableLookups="false" redirectPort="8443" acceptCount="100"
               connectionTimeout="20000" disableUploadTimeout="true" URIEncoding="UTF-8"/>

However we want to run Tomcat on an AJP connector, so:

  1. Open for editing:

    Code Block
    
    TOMCAT/conf/server.xml
    
  2. Comment out the normal connector above, and uncomment the AJP connector:

    Code Block
    
    <!-- Define an AJP 1.3 Connector on port 8009 -->
        <Connector port="8009" 
                   enableLookups="false" redirectPort="8443" protocol="AJP/1.3" URIEncoding="UTF-8" />
    
  3. Adjust the port if you wish and add in the URIEncoding="UTF-8" attribute.
  4. Start Tomcat normally.

...

We now need to tell Apache to talk to Tomcat over AJP. You should note that since OS X Leopard (10.5), the Apache config and modules have been relocated. This guide is for Leopard and for Apache 2.2 (default on Leopard). Also note that in Leopard, the necessary modules are already installed into /usr/libexec/apache2. Thanks Apple!

  1. Navigate to your Apache directory:

    Code Block
    
    cd /etc/apache2
    
  2. Open httpd.confand scroll to the large LoadModule section. Ensure you have the following uncommented:

    Code Block
    
    LoadModule proxy_module libexec/apache2/mod_proxy.so
    LoadModule proxy_ajp_module libexec/apache2/mod_proxy_ajp.so
    
  3. In my httpd.conf, right at the bottom there is a line:

    Code Block
    
    Include /private/etc/apache2/other/*.conf
    

    This will load in all other config files in the other/ directory. In the next step we will create an ajp.conf file and this line will load it. If you don't have this line, create it, or a similar line to load in the ajp.conf file we create in the next step. Save and close httpd.conf

  4. Create an ajp.conffile. You could put the configuration for AJP in the main httpd.conf file but I prefer to keep things separated.

    Code Block
    
    sudo touch other/ajp.conf
    
  5. Open ajp.confand paste in the following:

    Code Block
    
    ProxyRequests Off
    <Proxy *>
            Order deny,allow
            Deny from all
            Allow from localhost
    </Proxy>
    ProxyPass 		/ ajp://localhost:8009/
    ProxyPassReverse 	/ ajp://localhost:8009/
    

    This will forward all requests to Tomcat. You can optionally pass a list of contexts that you want forwarded, like so:

    Code Block
    ProxyRequests Off
    
    ProxyPass 		/somecontext ajp://localhost:8009/somecontext
    ProxyPassReverse 	/somecontext ajp://localhost:8009/somecontext
    
  6. Adjust the port to be whatever the port is in your Tomcat AJP connector. Save and close.
  7. Once again, ensure you have the line in httpd.conf that is going to load this ajp.conf file.
  8. Restart Apache:

    Code Block
    
    sudo httpd -k restart
    

    You should get no output, signalling the config is ok.

Test

Navigate to http://localhost/portal and Sakai should be alive!

To make sure all traffic is served via SSL:

Code Block
LoadModule rewrite_module libexec/apache2/mod_rewrite.so

RewriteEngine on
ReWriteCond %{SERVER_PORT} !^443$
RewriteRule ^/(.*) https://%{HTTP_HOST}/$1 [NC,R,L]

Comments and feedback very welcome.