blob: 8d71075e7e58f3adb3ab9d478569776e8c7f1c37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{% set work_threads = (ansible_processor_vcpus + 1) // 2 %}
{% if work_threads > 10 %}
{% set work_threads = 10 %}
{% endif %}
<VirtualHost {{ internal_ip }}:8042>
WSGIDaemonProcess aodh-api processes=4 threads={{ work_threads }} user=aodh group=aodh display-name=%{GROUP}
WSGIProcessGroup aodh-api
WSGIScriptAlias / /var/www/cgi-bin/aodh/app
WSGIApplicationGroup %{GLOBAL}
<IfVersion >= 2.4>
ErrorLogFormat "%{cu}t %M"
</IfVersion>
ErrorLog /var/log/{{ http_service_name }}/aodh.log
CustomLog /var/log/{{ http_service_name }}/aodh_access.log combined
<Directory /usr/lib/python2.7/dist-packages/aodh/api/>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
<IfVersion < 2.4>
Order allow,deny
Allow from all
</IfVersion>
</Directory>
</VirtualHost>
WSGISocketPrefix /var/run/{{ http_service_name }}
|