summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-keystone
diff options
context:
space:
mode:
authorLiam R. Howlett <Liam.Howlett@WindRiver.com>2014-09-19 15:51:17 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-09-22 11:46:42 -0400
commitbf51fa4f053a6aecb816ed7b4dcca64e9bd5b9b3 (patch)
tree02bdfd5520ab5c73183b2428baa42d686bb71d77 /meta-openstack/recipes-devtools/python/python-keystone
parentdcfac869bea8a501177c8419c8fd11c3ed03b21e (diff)
downloadmeta-cloud-services-bf51fa4f053a6aecb816ed7b4dcca64e9bd5b9b3.tar.gz
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 <Liam.Howlett@WindRiver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-keystone')
-rw-r--r--meta-openstack/recipes-devtools/python/python-keystone/wsgi-keystone.conf25
1 files changed, 25 insertions, 0 deletions
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 @@
1Listen 8081
2<VirtualHost *:8081>
3 ServerAdmin webmaster@localhost
4 WSGIApplicationGroup %{RESOURCE}
5 WSGIDaemonProcess keystone threads=15 display-name=%{GROUP}
6 WSGIProcessGroup keystone
7 WSGIScriptAlias /keystone/main /var/www/cgi-bin/keystone/main
8 WSGIScriptAlias /keystone/admin /var/www/cgi-bin/keystone/admin
9
10
11 <Location "/keystone">
12 Authtype none
13 </Location>
14
15 <Directory /var/www/cgi-bin/keystone/>
16 <IfVersion < 2.3>
17 Order allow,deny
18 Allow from all
19 </IfVersion>
20
21 <IfVersion >= 2.3>
22 Require all granted
23 </IfVersion>
24 </Directory>
25</VirtualHost>