Not Found
The requested URL /moinmoin/moin.cgi was not found on this server.
Apache Server at localhost Port 80
I can see the default page for apache at http://locahost, so I'm sure the web server is running.
I followed directions provided at ( which may not have been what I needed ... ):
http://moinmoin.wikiwikiweb.de/HelpMiscellaneous
Here is a configuration for virtual hosting with special permissions on Gentoo Linux. The following configuration is for Apache2 config files. Just put it all in httpd.conf for Apache 1.
Add this to /etc/apache2/conf/vhosts/vhosts.conf
NameVirtualHost *
<VirtualHost *>
ServerName www.domain.org
ServerAlias domain.org
DocumentRoot /var/www/domain.org/htdocs
</VirtualHost>
<VirtualHost *>
ServerName wiki.domain.org
Alias /wiki/ "/usr/share/moin/htdocs/"
Alias /favicon.ico "/var/www/htdocs/favicon.ico"
ScriptAlias / "/usr/share/moin/mywiki/moin.cgi/"
</VirtualHost>
Add this to /etc/apache2/conf/commonapache2.conf
<Directory /usr/share/moin/htdocs/>I'm still getting the same error. I've also changed the /moinmoin directory to be owned by apache instead of root, but that has not had any affect either.
Order deny,allow
Allow from all
</Directory>
<Directory /usr/share/moin/domain.org/>
Order deny,allow
Allow from all
</Directory>
Any ideas?
Thanks,
Shawn
--
"...to raise a signal means to turn the light on; ... Responding to a
signal means turning the light off (and, under System V, hoping the
bulb won't blow when it's next turned on)..."
--- Dan Bernstein