blob: b4f5381a551447646395b9dd32f137db883ee5fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Now please read the installation manual at
http://master18.moinmo.in/HelpOnInstalling
MoinMoin can work with a variety of webservers. Simple Apache instructions
are given below:
1. ExecCGI needs to be enabled in your Moinmoin directory. You can do this by
simply
# echo "Options ExecCGI" > ${MY_INSTALLDIR}/.htaccess
# echo "AddHandler cgi-script .cgi" >> ${MY_INSTALLDIR}/.htaccess
2. Add the following lines to your Apache configs:
Alias /wiki "${MY_INSTALLDIR}"
ScriptAlias /mymoin "${MY_INSTALLDIR}/moin.cgi"
3. If you are running >=net-www/apache-2.0.52-r2, then you also need to turn
on .htaccess. Look for the <Directory "/var/www/localhost/htdocs/"> stanza
in httpd.conf, and change "AllowOverride None" to "AllowOverride All".
4. Restart Apache
5. Go to http://${VHOST_HOSTNAME}/mymoin
|