Mercurial > ~darius > hgwebdir.cgi > iwws
annotate README.txt @ 16:5a9b33dcdb2c default tip
Show how many samples as well as when the last sample was.
author | Daniel O'Connor <darius@dons.net.au> |
---|---|
date | Fri, 31 May 2013 13:36:26 +0930 |
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. |