view README.txt @ 4:faacb77ce8f4

Sort out how to set percentage graph height thanks to http://callmejack.wordpress.com/2006/10/14/100-height-with-css/
author Daniel O'Connor <darius@dons.net.au>
date Mon, 15 Aug 2011 22:14:08 +0930
parents 942d4cfc2538
children 15fed86d9fac
line wrap: on
line source

- Unpack archive into pywws directory.
- Create Apache config containing..

WSGIRestrictStdout Off
WSGIDaemonProcess iwws user=myuser group=users threads=5 home=/path/to/pywws/iwws processes=5 maximum-requests=10000
WSGIScriptAlias /iwws /path/to/pywwsiwws/iwws.wsgi

Alias /static /path/to/pywws/iwws
<Directory /path/to/pywws/iwws/static>
    Order deny,allow
    Allow from all
</Directory>

<Directory /path/to/pywws/iwws>
    WSGIProcessGroup iwws
    WSGIApplicationGroup %{GLOBAL}
    WSGIScriptReloading On

    Order deny,allow
    Allow from all
</Directory>

- Code by me is licensed under the 2 clause BSDL, other code licensed as per those projects.