summaryrefslogtreecommitdiff
path: root/www/zope210/files/apache.conf.Zope-Changes
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2001-04-18 21:37:32 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2001-04-18 21:37:32 +0000
commit01a9f79f0a3692d8148990805beabc8593d3596d (patch)
tree99d1ef5788fc9e55b6948a7d4951ac4a315f63bf /www/zope210/files/apache.conf.Zope-Changes
parentNew index, rebuilt due to samba changes. (Gee, how many things (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_3_0'.release/4.3.0
Notes
Notes: svn path=/head/; revision=41661 svn path=/tags/RELEASE_4_3_0/; revision=41662; tag=release/4.3.0
Diffstat (limited to 'www/zope210/files/apache.conf.Zope-Changes')
-rw-r--r--www/zope210/files/apache.conf.Zope-Changes54
1 files changed, 0 insertions, 54 deletions
diff --git a/www/zope210/files/apache.conf.Zope-Changes b/www/zope210/files/apache.conf.Zope-Changes
deleted file mode 100644
index bd9e6799c08a..000000000000
--- a/www/zope210/files/apache.conf.Zope-Changes
+++ /dev/null
@@ -1,54 +0,0 @@
-# *** *** ***
-# -------------------
-# Zope Configuration.
-# -------------------
-#
-# IMPORTANT: In order for SSL access to work, copy the part between the
-# lines with the nine asterisks * to your SSL virtual host section, too!
-#
-# This rule adds the trailing slash if omitted. So, we will have it for
-# all subsequent rules
-RewriteEngine on
-RewriteRule ^/Zope$ /Zope/ [R]
-#
-# Zope requires the authentication headers to be passed to it if it is
-# called through the cgi of another web server (like apache). An "easy"
-# way to do so is to do a little mod_rewrite'ing. See doc/WEBSERVER.txt in
-# your Zope base directory for further information.
-#
-# Uncomment the first RewriteRule if you move Zope.cgi into
-# /usr/local/www/cgi-bin
-#
-# This maps maps /Zope/ to the Zope.cgi CGI script.
-RewriteCond %{HTTP:Authorization} ^(.*)
-#RewriteRule ^/Zope/(.*) /usr/local/www/cgi-bin/Zope.cgi/$1 [env=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l]
-RewriteRule ^/Zope/(.*) /usr/local/www/cgi-bin.default/Zope.cgi/$1 [env=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l]
-#
-
-# *** *** ***
-#
-# This lets the Zope cgi script run:
-#
-
-<Directory /usr/local/www/cgi-bin.default>
- Options +ExecCGI
-</Directory>
-
-
-# *** *** ***
-#
-# To require SSL to access the Zope management screens, uncomment the
-# next section:
-#
-#<IfDefine SSL>
-#<LocationMatch "/Zope/(.*)manage(.*)">
-# SSLRequireSSL
-#</LocationMatch>
-#
-#<LocationMatch "/cgi-bin/Zope.cgi(.*)manage(.*)">
-# SSLRequireSSL
-#</LocationMatch>
-#</IfDefine>
-#
-# End of Zope configuration section.
-