======Railo - Notes======
[[http://wiki.getrailo.org/|Railo CFML Documentation Wiki]] \\
[[http://tomcatenv.awardspace.com/frontTomcatWithApache.html|Front Tomcat with Apache and Mod Rewrite]] \\
[[http://raibledesigns.com/rd/entry/mixing_apache_http_server_mod|Raible Designs - Mixing Apache HTTP Server, mod_rewrite and mod_jk]] \\
[[http://net.tutsplus.com/tutorials/other/a-deeper-look-at-mod_rewrite-for-apache/|Nettuts+ - An In Depth Guide to mod_rewrite for Apache]] \\
=====Change error page to one that isn't as verbose=====
- Log in to the server administrator.
- Go to **Error** below **Settings** on the left.
- Change both **General Error Template (500)** and **Missing Template Error (404)** to:/railo-context/templates/error/error-public.cfm
- 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:
Order Deny,Allow
Deny from All
Allow from 10.1.1.0/24 10.1.12.0/24
Source: Jamie Krug's Ubuntu/TRAM(P) Guide via [[http://wiki.getrailo.org/wiki/Installation:Tomcat|Railo CFML Documentation Wiki - Installation:Tomcat]] \\