I have a simpler Apache output filter written using mod_python. I'm
curious if it is possible to implement this as a wsgi application
hosted by mod_wsgi; I am particularly interested in mod_wsgi's ability
to run applications as processes separate from the main Apache server.
The filter is being used to modify content accessed via Apache's proxy
module -- that is, the current configuration looks something like
this:
PythonOutputFilter /tmp/filter.py FILTER
<Location /test/>
SetOutputFilter FILTER
ProxyPass http://www.example.com/display/USERDOCS/
ProxyPassReverse http://www.example.com/display/USERDOCS/
</Location>
Can I do something similar with mod_wsgi?
--
You received this message because you are subscribed to the Google Groups
"modwsgi" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/modwsgi?hl=en.