From 2a6ce7197e5da9fddddaba2faff2a18c04ece957 Mon Sep 17 00:00:00 2001 From: Brant Knudson Date: Thu, 21 Aug 2014 18:23:12 -0500 Subject: [PATCH] Change httpd Keystone access log to keystone_access.log 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 --- files/apache-keystone.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/apache-keystone.template b/files/apache-keystone.template index a9d9cc3280..f19481e70d 100644 --- a/files/apache-keystone.template +++ b/files/apache-keystone.template @@ -7,7 +7,7 @@ Listen %ADMINPORT% WSGIScriptAlias / %PUBLICWSGI% WSGIApplicationGroup %{GLOBAL} ErrorLog /var/log/%APACHE_NAME%/keystone.log - CustomLog /var/log/%APACHE_NAME%/access.log combined + CustomLog /var/log/%APACHE_NAME%/keystone_access.log combined @@ -16,7 +16,7 @@ Listen %ADMINPORT% WSGIScriptAlias / %ADMINWSGI% WSGIApplicationGroup %{GLOBAL} ErrorLog /var/log/%APACHE_NAME%/keystone.log - CustomLog /var/log/%APACHE_NAME%/access.log combined + CustomLog /var/log/%APACHE_NAME%/keystone_access.log combined # Workaround for missing path on RHEL6, see