| commit | 1560efe9c93b17438ab37d94443832dde3842637 | [log] [tgz] |
|---|---|---|
| author | Matthew Treinish <mtreinish@kortar.org> | Fri Jun 30 12:15:26 2017 -0400 |
| committer | Matthew Treinish <mtreinish@kortar.org> | Fri Jun 30 12:24:21 2017 -0400 |
| tree | 6d425e1d0ac0f541a79514c8d44aa73acb56b962 | |
| parent | 3415521d5659b2268b8984bf89ede8e34f1b76f7 [diff] |
Switch local http uwsgi conf to http-socket mode Previously the local uwsgi server mode was using uwsgi in http mode. This was unessecary and actually not recommend by the uwsgi docs [1][2] This is because http mode starts a frontend http process that forwards requests to the workers running the python code. This is done for the largely the same reasons we're using apache as a proxy and is unnecessary. http-socket mode doesn't do this and just exposes the workers as an http interface to the proxy. (in our case apache) [1] http://uwsgi-docs.readthedocs.io/en/latest/HTTP.html#http-sockets [2] http://uwsgi-docs.readthedocs.io/en/latest/ThingsToKnow.html Change-Id: I5671687c8083fa4bdee066c07b083a0f00be532b