623492cc21
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
18 lines
361 B
INI
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
|