Files
Marian Horban
4abb31d9d8
Format of nova-api log files was corrected
When nova-api and nova-ec2-api services are started by Apache (it can be done with devstack config option NOVA_USE_MOD_WSGI=True) log files contained duplication of timestamp value. Change-Id: I5439ea8f89ca3073600456f67220e9d3f5257d97 Closes-Bug: #1510517
26 lines
674 B
Plaintext
26 lines
674 B
Plaintext
Listen %PUBLICPORT%
<VirtualHost *:%PUBLICPORT%>
WSGIDaemonProcess nova-api processes=%APIWORKERS% threads=1 user=%USER% display-name=%{GROUP} %VIRTUALENV%
WSGIProcessGroup nova-api
WSGIScriptAlias / %PUBLICWSGI%
WSGIApplicationGroup %{GLOBAL}
WSGIPassAuthorization On
<IfVersion >= 2.4>
ErrorLogFormat "%M"
</IfVersion>
ErrorLog /var/log/%APACHE_NAME%/nova-api.log
%SSLENGINE%
%SSLCERTFILE%
%SSLKEYFILE%
</VirtualHost>
Alias /compute %PUBLICWSGI%
<Location /compute>
SetHandler wsgi-script
Options +ExecCGI
WSGIProcessGroup nova-api
WSGIApplicationGroup %{GLOBAL}
WSGIPassAuthorization On
</Location>