From d45c9ff3b02a9bd98c958edbc31f1e180f84df3b Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Mon, 8 May 2023 14:32:47 +0900 Subject: [PATCH] Directly use wsgi script installed by rpm ... instead of the path copied during container image build. This allows us to reduce steps in image build. --- templates/keystoneapi/config/httpd.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/keystoneapi/config/httpd.conf b/templates/keystoneapi/config/httpd.conf index c6e01963..868055c9 100644 --- a/templates/keystoneapi/config/httpd.conf +++ b/templates/keystoneapi/config/httpd.conf @@ -40,6 +40,6 @@ CustomLog /dev/stdout proxy env=forwarded WSGIApplicationGroup %{GLOBAL} WSGIDaemonProcess keystone display-name=keystone group=keystone processes=3 threads=1 user=keystone WSGIProcessGroup keystone - WSGIScriptAlias / "/var/www/cgi-bin/keystone/main" + WSGIScriptAlias / "/usr/bin/keystone-wsgi-public" WSGIPassAuthorization On