Merge "keystone: log errors to stdout"

This commit is contained in:
Zuul
2025-12-12 17:30:02 +00:00
committed by Gerrit Code Review
2 changed files with 8 additions and 0 deletions

View File

@@ -788,6 +788,8 @@ conf:
SetEnvIf X-Forwarded-For "^.*\..*\..*\..*" forwarded
CustomLog /dev/stdout combined env=!forwarded
CustomLog /dev/stdout proxy env=forwarded
ErrorLogFormat "%{cu}t %M"
ErrorLog /dev/stdout
<VirtualHost *:{{ $portInt }}>
WSGIDaemonProcess keystone-public processes=1 threads=1 user=keystone group=keystone display-name=%{GROUP}

View File

@@ -0,0 +1,6 @@
---
keystone:
- |
Ensure all errors go to the kubenertes logs and not to a file in the
container.
...