I'm trying to use Apache's mod_proxy with the AJP backend and an ajp-wsgi app server but it doesn't seem to be sending SetEnv variables to the application server.
Configuration snippet:
<Location /script>
ProxyPass ajp://localhost:8009/script
SetEnv FOO "barbobot"
</Location>
How do I pass environment variables from the Apache configuration to my app server?