Moin Moin

MoinMoin is a Wiki engine implemented in Python, based on the PikiPiki Wiki engine, and licensed under the GNU GPL.

Telepítés

To install MoinMoin, run the following command in the command prompt:

sudo apt-get install python-moinmoin

You should also install apache2 web server. For installing apache2 web server, please refer to „Telepítés” sub-section in „HTTPD - Apache2 web kiszolgáló” section.

Beállítás

For configuring your first Wiki application, please run the following set of commands. Let us assume that you are creating a Wiki named mywiki:

cd /usr/share/moin
sudo mkdir mywiki
sudo cp -R data mywiki
sudo cp -R underlay mywiki
sudo cp server/moin.cgi mywiki
sudo chown -R www-data.www-data mywiki
sudo chmod -R ug+rwX mywiki
sudo chmod -R o-rwx mywiki

Now you should configure MoinMoin to find your new Wiki mywiki. To configure MoinMoin, open /etc/moin/mywiki.py file and change the following line:

data_dir = '/org/mywiki/data'

to

data_dir = '/usr/share/moin/mywiki/data'

Also, below the data_dir option add the data_underlay_dir:

data_underlay_dir='/usr/share/moin/mywiki/underlay'
[Megjegyzés]

If the /etc/moin/mywiki.py file does not exists, you should copy /etc/moin/moinmaster.py file to /etc/moin/mywiki.py file and do the above mentioned change.

[Megjegyzés]

If you have named your Wiki as my_wiki_name you should insert a line „("my_wiki_name", r".*")” in /etc/moin/farmconfig.py file after the line „("mywiki", r".*")”.

Once you have configured MoinMoin to find your first Wiki application mywiki, you should configure apache2 and make it ready for your Wiki application.

You should add the following lines in /etc/apache2/sites-available/default file inside the „<VirtualHost *>” tag:

### moin
  ScriptAlias /mywiki "/usr/share/moin/mywiki/moin.cgi"
  alias /moin_static181 "/usr/share/moin/htdocs"
  <Directory /usr/share/moin/htdocs>
  Order allow,deny
  allow from all
  </Directory>
### end moin

Once you configure the apache2 web server and make it ready for your Wiki application, you should restart it. You can run the following command to restart the apache2 web server:

sudo /etc/init.d/apache2 restart

Ellenőrzés

You can verify the Wiki application and see if it works by pointing your web browser to the following URL:

http://localhost/mywiki

You can also run the test command by pointing your web browser to the following URL:

http://localhost/mywiki?action=test

For more details, please refer to the MoinMoin web site.

References