Keystone's access log was going to httpd/access.log, which is the
common place for all access logging. This made it difficult to see
Keystone accesses apart from other access. Keystone's access log
will now be keystone_access.log
This makes the Keystone configuration similar to Horizon which uses
horizon_access.log.
Change-Id: I6e5ac121302b3d138758e6c49dffa9f05ad2fb85
Partial-Bug: #1359995
| ... | ... |
@@ -7,7 +7,7 @@ Listen %ADMINPORT% |
| 7 | 7 |
WSGIScriptAlias / %PUBLICWSGI% |
| 8 | 8 |
WSGIApplicationGroup %{GLOBAL}
|
| 9 | 9 |
ErrorLog /var/log/%APACHE_NAME%/keystone.log |
| 10 |
- CustomLog /var/log/%APACHE_NAME%/access.log combined |
|
| 10 |
+ CustomLog /var/log/%APACHE_NAME%/keystone_access.log combined |
|
| 11 | 11 |
</VirtualHost> |
| 12 | 12 |
|
| 13 | 13 |
<VirtualHost *:%ADMINPORT%> |
| ... | ... |
@@ -16,7 +16,7 @@ Listen %ADMINPORT% |
| 16 | 16 |
WSGIScriptAlias / %ADMINWSGI% |
| 17 | 17 |
WSGIApplicationGroup %{GLOBAL}
|
| 18 | 18 |
ErrorLog /var/log/%APACHE_NAME%/keystone.log |
| 19 |
- CustomLog /var/log/%APACHE_NAME%/access.log combined |
|
| 19 |
+ CustomLog /var/log/%APACHE_NAME%/keystone_access.log combined |
|
| 20 | 20 |
</VirtualHost> |
| 21 | 21 |
|
| 22 | 22 |
# Workaround for missing path on RHEL6, see |