
Version 2.2.1 comes with several adjustments and fixes: * unicode handling bug fixed * binary to launch monasca-log-api using WSGI * composite paste configuration * OpenStack format based documentation Story: 2001084 Task: 4766 Depends-On: I9843b52862b4e22c1fdf41b728145dfa37beb315 Change-Id: I40ae8e0539875d3ea62b0ec05912bf3cc1310ee1
23 lines
613 B
Plaintext
23 lines
613 B
Plaintext
Listen 5607
|
|
|
|
<VirtualHost *:5607>
|
|
WSGIDaemonProcess monasca-log-api processes=2 threads=1 socket-timeout=120 user=monasca-log-api group=monasca display-name=%{GROUP}
|
|
WSGIProcessGroup monasca-log-api
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
WSGIScriptAlias / /usr/bin/monasca-log-api-wsgi
|
|
WSGIPassAuthorization On
|
|
|
|
LogLevel info
|
|
ErrorLog /var/log/__APACHE_NAME__/monasca-log-api.log
|
|
CustomLog /var/log/__APACHE_NAME__/monasca-log-api_access.log combined
|
|
|
|
SetEnv no-gzip 1
|
|
AddDefaultCharset utf-8
|
|
|
|
<Directory /usr/bin>
|
|
Require all granted
|
|
</Directory>
|
|
|
|
</VirtualHost>
|
|
|