Your message dated Sat, 03 Apr 2010 12:42:21 +0200
with message-id <[email protected]>
and subject line 533059 fixed in 1.8.4-1
has caused the Debian Bug report #533059,
regarding apache2 example broken
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
533059: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=533059
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: python-moinmoin
The apache2 example is broken
- for the default apache2 on lenny, it is necessary to include a port
number in the <Virtualhost> directive, e.g. <VirtualHost *:80> rather
than just <VirtualHost *>
- the static alias should be moin_static171 and not just static
This is what worked for me:
<VirtualHost *:80>
ServerName wiki.example.org
DocumentRoot /var/www/wiki.example.org/
<Directory /var/www/wiki.example.org/moin.cgi>
Options +ExecCGI
</Directory>
Alias /moin_static171/ /usr/share/moin/htdocs/
AcceptPathInfo On
RewriteEngine On
RewriteRule ^/moin_static171/ - [last]
RewriteRule ^/wiki/moin(/(.*))? /$2 [last,R]
RewriteRule ^/static/ - [last]
RewriteRule ^/robots.txt - [last]
RewriteRule ^/favicon.ico - [last]
RewriteRule ^/wiki/?(.*)
/var/www/wiki.example.org/moin.cgi/$1 [last,type=application/x-httpd-cgi]
</VirtualHost>
--- End Message ---
--- Begin Message ---
533059 fixed 1.8.4-1
533059 fixed 1.9.1-1
--- End Message ---