# HG changeset patch # User paulb # Date 1075666495 0 # Node ID 4a920e5cda47aa9a44a694301482ce1b9b90be94 # Parent 689d7380e769594b9083c6ccad7da1a839f06a24 [project @ 2004-02-01 20:14:53 by paulb] Added deployment notes. diff -r 689d7380e769 -r 4a920e5cda47 docs/ModPython/NOTES.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docs/ModPython/NOTES.txt Sun Feb 01 20:14:55 2004 +0000 @@ -0,0 +1,12 @@ +For each application, add an Alias line to httpd.conf to point to the directory +containing the handler module, then specify the appropriate module name as the +PythonHandler. + +Alias /simple "/home/paulb/Software/Python/WebStack/examples/ModPython" + + + AddHandler python-program .py + PythonHandler Simple + PythonDebug On + + diff -r 689d7380e769 -r 4a920e5cda47 docs/Twisted/NOTES.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docs/Twisted/NOTES.txt Sun Feb 01 20:14:55 2004 +0000 @@ -0,0 +1,7 @@ +Specifying the appropriate PYTHONPATH, invoke the application program. For +example, in the WebStack distribution directory: + +PYTHONPATH=.:examples/Common python examples/Twisted/Simple.py + +The WebStack package must reside on the PYTHONPATH, along with the package +containing the application itself. diff -r 689d7380e769 -r 4a920e5cda47 docs/Webware/NOTES.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docs/Webware/NOTES.txt Sun Feb 01 20:14:55 2004 +0000 @@ -0,0 +1,7 @@ +Change into the WebKit directory within Webware. Then, specifying the +appropriate PYTHONPATH, invoke the application server. For example: + +PYTHONPATH=../../WebStack:../../WebStack/examples/Common ./AppServer + +The WebStack package must reside on the PYTHONPATH, along with the package +containing the application itself.