diff --git a/README.rst b/README.rst index b073de1..2563f6d 100644 --- a/README.rst +++ b/README.rst @@ -89,6 +89,17 @@ directly on the host where Asterisk is running. Since Asterisk doesn't run on windows platforms (and probably never will) the agi part of the package can only be run on Asterisk platforms. +FastAGI +------- + +FastAGI support is a python based raw SocketServer, To start the server +python fastagi.py should start it listening on localhost and the default +asterisk FastAGI port. This does require the newest version of pyst2. +The FastAGI server runs in as a Forked operation for each request, in +an attempt to prevent blocking by a single bad service. As a result the +FastAGI server may consume more memory then a single process. If you need +to use a single process simply uncomment the approperate line. Future versions +of this will use a config file to set options. Credits -------