diff doc/installation.txt @ 1808:3ac35c8e1782

new example and some more installation docs
author Richard Jones <richard@users.sourceforge.net>
date Fri, 12 Sep 2003 04:29:35 +0000
parents 0f2678eeeac6
children 06f5b36b201b
line wrap: on
line diff
--- a/doc/installation.txt	Wed Sep 10 13:04:05 2003 +0000
+++ b/doc/installation.txt	Fri Sep 12 04:29:35 2003 +0000
@@ -2,7 +2,7 @@
 Installing Roundup
 ==================
 
-:Version: $Revision: 1.57 $
+:Version: $Revision: 1.58 $
 
 .. contents::
 
@@ -326,6 +326,23 @@
 To make the server run in the background, use the "-d" option, specifying the
 name of a file to write the server process id (pid) to.
 
+To run the server proxied through apache (to take advantage of SSL or other
+apache features), use the following configuration lines::
+
+  LoadModule proxy_module libexec/apache2/mod_proxy.so
+  LoadModule proxy_connect_module libexec/apache2/mod_proxy_connect.so
+  LoadModule proxy_http_module libexec/apache2/mod_proxy_http.so
+
+  <Location /prometheus/>
+    ProxyPass http://192.168.1.2:9090/roundup/
+    AuthType Basic
+    AuthName Roundup
+    AuthUserFile /some/place/htpasswd
+    Require valid-user
+  </Location>
+
+Changing the ProxyPass line to point to the server you're running.
+
 
 Zope Product - ZRoundup
 ~~~~~~~~~~~~~~~~~~~~~~~

Roundup Issue Tracker: http://roundup-tracker.org/