Mercurial > ~darius > hgwebdir.cgi > iwws
annotate README.txt @ 13:a0213f0e707b
- Update for v12.10
- Plot raw data to show more up to date data
- Average/peak winds so they don't spam the display.
- Display the time of the most recent data.
author | Daniel O'Connor <darius@dons.net.au> |
---|---|
date | Thu, 10 Jan 2013 16:38:36 +1030 |
parents | 15fed86d9fac |
children |
rev | line source |
---|---|
0 | 1 - Unpack archive into pywws directory. |
2 - Create Apache config containing.. | |
3 | |
4 WSGIRestrictStdout Off | |
10
15fed86d9fac
Fix example to be correct.
Daniel O'Connor <darius@dons.net.au>
parents:
3
diff
changeset
|
5 WSGIDaemonProcess iwws user=myuser group=users threads=5 home=/path/to/pywws processes=5 maximum-requests=10000 |
0 | 6 WSGIScriptAlias /iwws /path/to/pywwsiwws/iwws.wsgi |
7 | |
3 | 8 Alias /static /path/to/pywws/iwws |
9 <Directory /path/to/pywws/iwws/static> | |
10 Order deny,allow | |
11 Allow from all | |
12 </Directory> | |
13 | |
14 <Directory /path/to/pywws/iwws> | |
0 | 15 WSGIProcessGroup iwws |
16 WSGIApplicationGroup %{GLOBAL} | |
17 WSGIScriptReloading On | |
18 | |
19 Order deny,allow | |
20 Allow from all | |
21 </Directory> | |
22 | |
23 - Code by me is licensed under the 2 clause BSDL, other code licensed as per those projects. |