diff options
| author | Liam R. Howlett <Liam.Howlett@WindRiver.com> | 2014-09-19 15:51:17 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-09-22 11:46:42 -0400 |
| commit | bf51fa4f053a6aecb816ed7b4dcca64e9bd5b9b3 (patch) | |
| tree | 02bdfd5520ab5c73183b2428baa42d686bb71d77 /meta-openstack/recipes-devtools/python/python-keystone | |
| parent | dcfac869bea8a501177c8419c8fd11c3ed03b21e (diff) | |
| download | meta-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.conf | 25 |
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 @@ | |||
| 1 | Listen 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> | ||
