ChangeSet ID: 11153528400506680056723816 CVSROOT: /cvsroot/wine Module name: wiki Changes by: dimi@sc8-pr-cvs1.sourceforge.net 2005/05/05 21:14:00
Modified files: . : README Added files: . : winewiki.conf
Log message: Add the Apache configuration file.
Old revision New revision Changes Path 1.1 1.2 +1 -0 wiki/README Added 1.1 +0 -0 wiki/winewiki.conf
Index: wiki/README diff -u -p wiki/README:1.1 wiki/README:1.2 --- wiki/README 6 May 2005 4:14: 0 -0000 +++ /dev/null 6 May 2005 4:14: 0 -0000 @@ -14,5 +14,6 @@ FILES LICENSE This package is GPL logo.png The logo (Wine Wiki) for the site favicon.ico Same as on WineHQ.org + winewiki.conf Goes in /etc/httpd/conf.d/ to configure Apache wikiconfig.py The main configuration file for the wiki winehq/* The default theme for the site Index: wiki/winewiki.conf diff -u -p /dev/null wiki/winewiki.conf:1.1 --- wiki/winewiki.conf 6 May 2005 4:14: 1 -0000 +++ /dev/null 6 May 2005 4:14: 1 -0000 @@ -0,0 +1,22 @@ +# Serving it up via mod_python, when the wiki root problem gets solved +#<Location /wine/wiki> +# SetHandler python-program +# PythonPath "['/var/www/wine/wiki']+sys.path" +# PythonHandler MoinMoin.request::RequestModPy.run +#</Location> + +<VirtualHost *:80> + ServerName wiki.winehq.org + ServerAlias wiki.winehq.com + Alias /moin/ "/usr/share/moin/htdocs/" + Alias /favicon.ico "/var/www/wine/wiki/favicon.ico" + Alias /logo.png "/var/www/wine/wiki/logo.png" + ScriptAlias / "/var/www/wine/wiki/moin.cgi/" +</VirtualHost> + +<Directory /var/www/wine/wiki/> + Options ExecCGI + Order allow,deny + Allow from all +</Directory> +