Index: openacs-4/packages/gatekeeper/www/doc/xml/requirements.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/gatekeeper/www/doc/xml/requirements.xml,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/gatekeeper/www/doc/xml/requirements.xml 14 Jan 2004 16:48:00 -0000 1.1
+++ openacs-4/packages/gatekeeper/www/doc/xml/requirements.xml 26 Feb 2004 14:44:06 -0000 1.2
@@ -163,6 +163,36 @@
PASSWD, DB,...
+
+
+--------------------------------------------
+Other Use-Case:
+--------------------------------------------
+Integration of an external website protected by http basic authencation (via the .htaccess file from Apache)
+
+Set up a gatekeeper instance that points to the URL that should be
+password-protected if not accessed from OpenACS or .LRN.
+
+Then edit the .htaccess file in question. It should read something like this:
+
+AuthUserFile /home/www/dirkgomez/.htpasswd
+AuthGroupFile /dev/null
+AuthName "Dirk Gomez' downright secret stuff"
+AuthAuthoritative On
+AuthType Basic
+Satisfy Any
+
+<Limit GET POST>
+order deny,allow
+deny from all
+#allow from foobar.dirkgomez.de
+allow from 123.123.123.123
+require user dirk ramiro
+</Limit>
+
+
+
+
@@ -322,4 +352,4 @@
-
\ No newline at end of file
+