mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
689945f93e
of how to turn it on. Conditionalize the SSL usage on <IfDefine SSL>, since that's been a problem. Also make the rewrite use cgi-bin.default/Zope.cgi, but give an example of what to change if you move it to cgi-bin/Zope.cgi.
55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
# *** *** ***
|
|
# -------------------
|
|
# 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.
|
|
|