From ec0ba7fbdc01da6130c90f755b9c0d23d881eeb8 Mon Sep 17 00:00:00 2001 From: Luke Repko Date: Tue, 6 Aug 2024 15:28:50 -0500 Subject: [PATCH] fix: redirect apache2 errorlog to stderr --- Containerfiles/GnocchiRXT-Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfiles/GnocchiRXT-Containerfile b/Containerfiles/GnocchiRXT-Containerfile index 7db2a3d6..50e69435 100644 --- a/Containerfiles/GnocchiRXT-Containerfile +++ b/Containerfiles/GnocchiRXT-Containerfile @@ -32,3 +32,4 @@ RUN pip install \ "gnocchi[postgresql,ceph,keystone] @ git+https://github.com/gnocchixyz/gnocchi.git@${GNOCCHI_VERSION}" \ "pymemcache" RUN adduser gnocchi --disabled-password +RUN sed -i 's@^ErrorLog.*@ErrorLog /dev/stderr@' /etc/apache2/apache2.conf