Juju charm python-moinmoin
==========================
:Author: Patrick Hetu <patrick@koumbit.org>
Example deployment
------------------
1. Setup your wiki specific parameters in mywiki.yaml like this::
mywiki:
wiki_name : "My MoinMoin wiki"
admin_name: "Admin"
languages: English French
xapian_search: True
2. Deployment with nginx::
juju bootstrap
juju deploy --config mywiki.yaml python-moinmoin
juju deploy nginx
juju add-relation nginx:reverseproxy python-moinmoin:website
juju expose nginx
3. Accessing your new moinmoin wiki should be ready at::
http://<nginx-machine-addr>/
To find out the public address of nginx, look for it in the output of the
`juju status` command.
| 2012/07/09 Patrick Hetu don't failed if gunicorn his not configure yet (revno 33) |
| 2012/07/09 Patrick Hetu use the right relation name for the wsgi container (revno 32) |
| 2012/07/09 Patrick Hetu fix the regex and quote what we found (revno 31) |
| 2012/07/09 Patrick Hetu grep for the port in website relations (revno 30) |
| 2012/07/08 Patrick Hetu make install hook more idempotent (revno 29) |
| 2012/07/08 Patrick Hetu fix wsgi relation name (revno 28) |
| 2012/07/08 Patrick Hetu be sure to use set -e and bash in all hooks (revno 27) |
| 2012/07/08 Patrick Hetu remove unneeded start and stop hooks (revno 26) |
| 2012/07/08 Patrick Hetu Move the website relation back in the charm (revno 25) |