diff options
-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/ |