Table of Contents

Railo - Notes

Railo CFML Documentation Wiki

Front Tomcat with Apache and Mod Rewrite
Raible Designs - Mixing Apache HTTP Server, mod_rewrite and mod_jk
Nettuts+ - An In Depth Guide to mod_rewrite for Apache

Change error page to one that isn't as verbose

  1. Log in to the server administrator.
  2. Go to Error below Settings on the left.
  3. Change both General Error Template (500) and Missing Template Error (404) to:
    /railo-context/templates/error/error-public.cfm
  4. Click on Update.

Deny access to Railo admin page except from local subnets

When using Apache with mod_jk.

Add the following to httpd.conf:

<Location /railo/railo-context/admin/>
        Order Deny,Allow
        Deny from All
        Allow from 10.1.1.0/24 10.1.12.0/24 
</Location>

Source: Jamie Krug's Ubuntu/TRAM(P) Guide via Railo CFML Documentation Wiki - Installation:Tomcat