Setting up Gunicorn and Apache as proxy
</Proxy>Here is the below config to run Apache as a proxy for Gunicorn
gunicorn api.wsgi --reload --daemon --bind=192.168.0.140
Apache setup
<VirtualHost *:80>
ServerName stage.xyz.com
ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass / http://192.168.0.140:8000/ ProxyPassReverse / http://192.168.0.140:8000/ <Location />
Order allow,deny Allow from all </Location> </VirtualHost>










