3f55b87069
Currently we don't put global Apache error logs into /var/log/kolla, this change adds statements that redirect those logs there. Adapted the logfile names to catch into openstack wsgi logging fluentd input config and existing logrotate cron entries. Change-Id: I21216e688a1993239e3e81411a4e8b6f13e138c2
46 lines
1.7 KiB
Django/Jinja
46 lines
1.7 KiB
Django/Jinja
{% set aodh_log_dir = '/var/log/kolla/aodh' %}
|
|
{% if aodh_install_type == 'binary' %}
|
|
{% set python_path = '/usr/lib/python3/dist-packages' if kolla_base_distro in ['debian', 'ubuntu'] else '/usr/lib/python2.7/site-packages' %}
|
|
{% else %}
|
|
{% set python_path = '/var/lib/kolla/venv/lib/python' + distro_python_version + '/site-packages' %}
|
|
{% endif %}
|
|
{% set binary_path = '/usr/bin' if aodh_install_type == 'binary' else '/var/lib/kolla/venv/bin' %}
|
|
Listen {{ api_interface_address | put_address_in_context('url') }}:{{ aodh_api_listen_port }}
|
|
|
|
ServerSignature Off
|
|
ServerTokens Prod
|
|
TraceEnable off
|
|
|
|
ErrorLog "{{ aodh_log_dir }}/apache-error.log"
|
|
<IfModule log_config_module>
|
|
CustomLog "{{ aodh_log_dir }}/apache-access.log" common
|
|
</IfModule>
|
|
|
|
{% if aodh_logging_debug | bool %}
|
|
LogLevel info
|
|
{% endif %}
|
|
|
|
<Directory "{{ binary_path }}">
|
|
<FilesMatch "^aodh-api$">
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride None
|
|
Require all granted
|
|
</FilesMatch>
|
|
</Directory>
|
|
|
|
<VirtualHost *:{{ aodh_api_listen_port }}>
|
|
## Logging
|
|
ErrorLog "{{ aodh_log_dir }}/aodh_wsgi_error.log"
|
|
ServerSignature Off
|
|
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b %D \"%{Referer}i\" \"%{User-Agent}i\"" logformat
|
|
CustomLog "{{ aodh_log_dir }}/aodh_wsgi_access.log" logformat
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
WSGIDaemonProcess aodh group=aodh processes={{ openstack_service_workers }} threads=1 user=aodh python-path={{ python_path }}
|
|
WSGIProcessGroup aodh
|
|
{% if aodh_install_type == 'binary' and kolla_base_distro in ['debian', 'ubuntu'] %}
|
|
WSGIScriptAlias / "{{ binary_path }}/python3-aodh-api"
|
|
{% else %}
|
|
WSGIScriptAlias / "{{ binary_path }}/aodh-api"
|
|
{% endif %}
|
|
</VirtualHost>
|