The Fine Print: The following comments are owned by whoever posted them.
( Reply )
|
Re: Making a squishdot site the root of a web
by on Tuesday November 30, 09:01PM, 1999
|
My solution for this was to simply insert a redirect on the Zope index page. So when a user arrives at the "normal" site index.html page, they are instantly transparently redirected to the squishdot site root. It's not as elegant as moving the whole shebang to the top of the site, but it allows me to leave a functional site intact.
|
[ Reply to this ]
|
Re: Making a squishdot site the root of a web
by on Wednesday December 08, 08:48PM, 1999
|
Along the same lines, I was wondering about the default install. Seems to create the server instance on port 8080. I would like to ask opinions on the safety on running the server as root (port 80).
One final question... I was messing around with defining a different "site image" for the site_header section. I accidentally erased the
and now the only way to get an image to show up is to put in the real path. Does anyone know what the site_img dtml-var is (was)? Thanks in advance... :-)
|
[ Reply to this ]
|
Re: Making a squishdot site the root of a web
by on Tuesday December 21, 04:23PM, 1999
|
I also use Zope with apache and it does work with rewrite rules.
This is what i use:
RewriteEngine on
RewriteCond %{HTTP:Authorization} ^(.*)
# The next must all be on the same line:
RewriteRule ^/(.*) /home/httpd/cgi-bin/Zope.cgi/Squishdot/$1 [e=HTTP_CGI_AUT
HORIZATION:%1,t=application/x-httpd-cgi,l]
|
[ Reply to this ]
|
The Fine Print: The following comments are owned by whoever posted them.
( Reply )
|