summaryrefslogtreecommitdiff
path: root/www/zope210/files
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-05-29 02:49:55 +0000
committerSteve Price <steve@FreeBSD.org>2000-05-29 02:49:55 +0000
commit795f0af920e48610cdfb778341a7568e92b9a977 (patch)
treef04a9659a06803809ca1d90d776993be5c55b02b /www/zope210/files
parent- Fix pkg/PLIST (add bin/dc21x_cam) (diff)
Update to version 2.1.6.
PR: 18444 Submitted by: Thomas Hentschel <thomas@hentschel.net>
Notes
Notes: svn path=/head/; revision=28863
Diffstat (limited to 'www/zope210/files')
-rw-r--r--www/zope210/files/apache.conf.Zope-Changes48
1 files changed, 48 insertions, 0 deletions
diff --git a/www/zope210/files/apache.conf.Zope-Changes b/www/zope210/files/apache.conf.Zope-Changes
new file mode 100644
index 000000000000..f1d28a1a82e0
--- /dev/null
+++ b/www/zope210/files/apache.conf.Zope-Changes
@@ -0,0 +1,48 @@
+# *** *** ***
+# -------------------
+# 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.
+#
+# 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]
+#
+# *** *** ***
+#
+# Also, Zope, in spite of some fussing about "security", totally ignores
+# the man in the middle. So, all contacts to Zope management screens are
+# made to require SSL.
+#
+<LocationMatch "/Zope/(.*)manage(.*)">
+ SSLRequireSSL
+</LocationMatch>
+#
+<LocationMatch "/cgi-bin/Zope.cgi(.*)manage(.*)">
+ SSLRequireSSL
+</LocationMatch>
+#
+# One final notice: If you can't get working your authentication with Zope
+# check if the access file in the Zope base directory (maybe this is
+# /usr/local/www/Zope or the like) contains a CLEARTEXT password. If
+# encryption there is set to SHA, to my knowledge, authentication does not
+# work. Try `python zpasswd.py -u zopemaster -p test -e CLEARTEXT access`
+# (in the Zope base dir). This sets the required username/passwd pair to
+# zopemaster/test respectively and stores them as CLEARTEXT password.
+# Don't forget the proper access restrictions to this file if you have
+# user access to the file system that it is stored on.
+#
+# End of Zope configuration section.
+