07c8ecdff2
Add documentation for how to run uwsgi proxied by uwsgi. Change-Id: I3d307a953bbe1ba78745c0846cd4c5a78010b6cb
14 lines
277 B
Plaintext
14 lines
277 B
Plaintext
Listen 5000
|
|
Listen 35357
|
|
|
|
<VirtualHost *:5000>
|
|
ProxyPass / uwsgi://127.0.0.1:5001/
|
|
</VirtualHost>
|
|
|
|
<VirtualHost *:35357>
|
|
ProxyPass / uwsgi://127.0.0.1:35358/
|
|
</VirtualHost>
|
|
|
|
ProxyPass /identity uwsgi://127.0.0.1:5001/
|
|
ProxyPass /identity_admin uwsgi://127.0.0.1:35358/
|