7d904743ef
This patch aims to migrate service from usage of regular syslog files to journald. We also disable uwsgi logging, since it dublicates requests that are logged by service itself. Change-Id: If1eda4d803661a0b924941aecd1867302391a5f4
30 lines
910 B
Django/Jinja
30 lines
910 B
Django/Jinja
# {{ ansible_managed }}
|
|
[uwsgi]
|
|
uid = {{ nova_system_user_name }}
|
|
gid = {{ nova_system_group_name }}
|
|
|
|
{% if nova_install_method == 'source' %}
|
|
virtualenv = /openstack/venvs/nova-{{ nova_venv_tag }}
|
|
{% endif %}
|
|
{% if nova_install_method == 'distro' and (ansible_os_family | lower) == 'debian' %}
|
|
plugin = python3
|
|
{% endif %}
|
|
wsgi-file = {{ nova_bin }}/{{ item.wsgi_name }}
|
|
http = {{ item.uwsgi_bind_address}}:{{ item.uwsgi_port }}
|
|
|
|
master = true
|
|
enable-threads = true
|
|
processes = {{ nova_wsgi_processes }}
|
|
threads = {{ nova_wsgi_threads }}
|
|
exit-on-reload = false
|
|
die-on-term = true
|
|
lazy-apps = true
|
|
add-header = Connection: close
|
|
buffer-size = {{ nova_wsgi_buffer_size }}
|
|
thunder-lock = true
|
|
disable-logging = true
|
|
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:
|