Steps to setup Moin for your Apache server ========================================== These instructions are only an example, please refer to the upstream-supplied documentation files in this package, http://moinmo.in/ and http://code.google.com/p/modwsgi/ for more instructions on setting up Moin and mod_wsgi. It's very important to read the documentation in /usr/share/doc/moin-*, especially when upgrading to a newer version of this package! 'rpm -qd moin' should give a list of the documentation files in this package. Moin is a pure WSGI application since 1.9.0, this README will guide you through a basic setup with Apache and mod_wsgi. Make sure you have the mod_wsgi package installed from the Fedora package repository. Refer to the Moin website for documentation about setting up Moin with FCGI/SCGI/CGI or with other web servers such as lighttpd. Since 1.9.0 Moin runs a server to serve the static files itself from the path defined in the url_prefix_static variable in wikiconfig.py. Set up a wiki instance ---------------------- First you need a wiki instance, which can be set up as follows: #!/bin/sh DESTDIR=/var/www/mywiki mkdir -p $DESTDIR chcon -t httpd_sys_content_t $DESTDIR cp -a /usr/share/moin/{data,underlay} $DESTDIR chown -R apache:apache $DESTDIR/{data,underlay} chcon -R -t httpd_sys_rw_content_t $DESTDIR/{data,underlay} Set up Moin ----------- #!/bin/sh DESTDIR=/var/www/mywiki mkdir -p $DESTDIR cp -a /usr/share/moin/server/moin.wsgi $DESTDIR cp -a /usr/share/moin/config/wikiconfig.py $DESTDIR chcon -t httpd_sys_content_t moin.wsgi wikiconfig.py cat > /etc/httpd/conf.d/mywiki.conf < /etc/httpd/conf.d/mywiki.conf < Options Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all ExpiresActive On ExpiresDefault "access plus 1 year" # Wiki instance with mod_fcgid ScriptAlias /mywiki "$DESTDIR/cgi-bin/moin.fcg" EOF Note that the URL is moin-version specific (the example is for moin 1.9.3) and python version specific (the example is for python 2.7) and will need to be tweaked accordingly. Edit $DESTDIR/cgi-bin/wikiconfig.py to suit your needs and then restart the web server to load the new configuration: service httpd restart Upgrading from previous versions ================================ See README.migration for full details. You will need to run one or more migration scripts. To upgrade from a pre-1.5.3 version, or from a wiki created using moin 1.5.3, you will need to run one or more "old-style" migration scripts, ending with 152_to_1050300.py. This is done as follows: # cd /var/www/mywiki (substitute the actual location of your wiki instance for /var/www/mywiki) # runuser -s /bin/sh -c "python /usr/lib/python2.*/site-packages/MoinMoin/script/old/migration/152_to_1050300.py" apache (use the same approach to run any migration scripts, in order, as indicated in README.migration; 152_to_1050300.py should be the *last* one) For a wiki previously updated to 1.5.3, or created in 1.5.4 or later, only one migration script needs to be run: # runuser -s /bin/sh -c "moin --config-dir=/var/www/mywiki/cgi-bin --wiki-url=www.example.com/mywiki/ migration data" apache (substitute the actual location of your wiki configuration directory for /var/www/mywiki/cgi-bin, and your wiki's URL [minus the protocol part] for www.example.com/mywiki/)