
Starting this new role as a copy of the os_cinder role due to the similarities between the two openstack projects. This role will deploy manila api, scheduler and share services on ubuntu with the default local LVM backed NFS scenario. Change-Id: Ibda073e5aaa6df3b254961d4aed3a8d5961f3432
26 lines
788 B
Django/Jinja
26 lines
788 B
Django/Jinja
[uwsgi]
|
|
uid = {{ manila_system_user_name }}
|
|
gid = {{ manila_system_group_name }}
|
|
|
|
{% if manila_install_method == 'source' %}
|
|
virtualenv = /openstack/venvs/manila-{{ manila_venv_tag }}
|
|
{% endif %}
|
|
wsgi-file = {{ manila_bin }}/{{ item.wsgi_name }}
|
|
http = {{ item.uwsgi_bind_address }}:{{ item.uwsgi_port }}
|
|
|
|
master = true
|
|
enable-threads = true
|
|
processes = {{ manila_wsgi_processes }}
|
|
threads = {{ manila_wsgi_threads }}
|
|
exit-on-reload = false
|
|
die-on-term = true
|
|
lazy-apps = true
|
|
add-header = Connection: close
|
|
buffer-size = {{ manila_wsgi_buffer_size }}
|
|
thunder-lock = true
|
|
logfile-chmod = 644
|
|
pidfile = /var/run/{{ item.service_name }}/{{ item.service_name }}.pid
|
|
|
|
# Avoid filling up the logs with health check requests from haproxy.
|
|
route-user-agent = ^osa-haproxy-healthcheck$ donotlog:
|