diff options
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> | ||
