glance/httpd/glance-api-uwsgi.ini
Matthew Treinish 623492cc21
Add docs and sample configs for running glance with apache
This commit adds docs and sample configs to glance for running glance
under apache. It also documents the limitations with the 2 common
methods of deploying wsgi scripts with apache, mod_wsgi and
mod_proxy_uwsgi, and why those don't work for the glance use case.

Change-Id: I856e7ada856128def48deda5b063d818f45af336
2017-06-18 04:00:48 -04:00

18 lines
361 B
INI

[uwsgi]
http-auto-chunked = true
http-chunked-input = true
http-raw-body = true
chmod-socket = 666
lazy-apps = true
add-header = Connection: close
buffer-size = 65535
thunder-lock = true
plugins = python
enable-threads = true
exit-on-reload = true
die-on-term = true
master = true
processes = 4
http = 127.0.0.1:60999
wsgi-file = /usr/local/bin/glance-wsgi-api