From bf51fa4f053a6aecb816ed7b4dcca64e9bd5b9b3 Mon Sep 17 00:00:00 2001 From: "Liam R. Howlett" Date: Fri, 19 Sep 2014 15:51:17 -0400 Subject: python-keystone: Add apache vhost server. This patch set configures an apache vhost server on port 8081 which will serve as the main authentication method and documents the change in README.keystone. Signed-off-by: Liam R. Howlett --- .../python/python-keystone/wsgi-keystone.conf | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 meta-openstack/recipes-devtools/python/python-keystone/wsgi-keystone.conf (limited to 'meta-openstack/recipes-devtools/python/python-keystone/wsgi-keystone.conf') diff --git a/meta-openstack/recipes-devtools/python/python-keystone/wsgi-keystone.conf b/meta-openstack/recipes-devtools/python/python-keystone/wsgi-keystone.conf new file mode 100644 index 0000000..91b95f6 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-keystone/wsgi-keystone.conf @@ -0,0 +1,25 @@ +Listen 8081 + + ServerAdmin webmaster@localhost + WSGIApplicationGroup %{RESOURCE} + WSGIDaemonProcess keystone threads=15 display-name=%{GROUP} + WSGIProcessGroup keystone + WSGIScriptAlias /keystone/main /var/www/cgi-bin/keystone/main + WSGIScriptAlias /keystone/admin /var/www/cgi-bin/keystone/admin + + + + Authtype none + + + + + Order allow,deny + Allow from all + + + = 2.3> + Require all granted + + + -- cgit v1.2.3-54-g00ecf