e1d004aa44
Having Keystone's log level at debug caused a lot of uninteresting Httpd-related log lines to be displayed which makes debugging more difficult than it should be. Rather than set the log level explicitly, Keystone will use the Httpd server's setting, which defaults to warn. Partial-Bug: #1359995 Change-Id: Ieef882944bafd98f7b27497a5276124b21c3e576
25 lines
879 B
Plaintext
25 lines
879 B
Plaintext
Listen %PUBLICPORT%
|
|
Listen %ADMINPORT%
|
|
|
|
<VirtualHost *:%PUBLICPORT%>
|
|
WSGIDaemonProcess keystone-public processes=5 threads=1 user=%USER% display-name=%{GROUP}
|
|
WSGIProcessGroup keystone-public
|
|
WSGIScriptAlias / %PUBLICWSGI%
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
ErrorLog /var/log/%APACHE_NAME%/keystone.log
|
|
CustomLog /var/log/%APACHE_NAME%/access.log combined
|
|
</VirtualHost>
|
|
|
|
<VirtualHost *:%ADMINPORT%>
|
|
WSGIDaemonProcess keystone-admin processes=5 threads=1 user=%USER% display-name=%{GROUP}
|
|
WSGIProcessGroup keystone-admin
|
|
WSGIScriptAlias / %ADMINWSGI%
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
ErrorLog /var/log/%APACHE_NAME%/keystone.log
|
|
CustomLog /var/log/%APACHE_NAME%/access.log combined
|
|
</VirtualHost>
|
|
|
|
# Workaround for missing path on RHEL6, see
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1121019
|
|
WSGISocketPrefix /var/run/%APACHE_NAME%
|