diff options
author | francis <francis> | 2008-04-10 19:44:07 +0000 |
---|---|---|
committer | francis <francis> | 2008-04-10 19:44:07 +0000 |
commit | d44f7a0677a2c156ece62c4c8149ebbd3d6a2476 (patch) | |
tree | 9e21658ebb8a82afb07c0dfcc336c124cdb47694 | |
parent | 4e8004effb53b4c489995f913cc8c45681419a5e (diff) |
Proxy pass for mongrel
-rw-r--r-- | config/httpd.conf | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/config/httpd.conf b/config/httpd.conf index 94c8a79cc..21357cdf5 100644 --- a/config/httpd.conf +++ b/config/httpd.conf @@ -6,7 +6,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org # -# $Id: httpd.conf,v 1.2 2008-02-25 14:53:10 francis Exp $ +# $Id: httpd.conf,v 1.3 2008-04-10 19:44:07 francis Exp $ #DirectoryIndex index.cgi @@ -16,8 +16,8 @@ </Location> RewriteEngine on -#RewriteLog /var/log/apache/rewrite.log -#RewriteLogLevel 3 +RewriteLog /var/log/apache/rewrite.log +RewriteLogLevel 3 # Make a file down.html in the DocumentRoot bring down the whole site and # display itself. @@ -26,3 +26,5 @@ RewriteRule /(.+).cgi /down.html [R] RewriteCond %{DOCUMENT_ROOT}/down.html !-s RewriteRule /down.html / [R] +# Use mongrel +ProxyPass / http://localhost:3000/ |