Browse code

Keystone also handle /identity and /identity_admin

When configured to run under Apache Httpd, keystone will also
handle requests on /identity (public) and /identity_admin (admin).

Change-Id: I4e6eb0cad1603aa0e612d0adc5431565da93870e

Brant Knudson authored on 2015/06/21 23:56:17
Showing 1 changed files
... ...
@@ -33,3 +33,23 @@ LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\" %D(us)"
33 33
     %SSLCERTFILE%
34 34
     %SSLKEYFILE%
35 35
 </VirtualHost>
36
+
37
+Alias /identity %PUBLICWSGI%
38
+<Location /identity>
39
+    SetHandler wsgi-script
40
+    Options +ExecCGI
41
+
42
+    WSGIProcessGroup keystone-public
43
+    WSGIApplicationGroup %{GLOBAL}
44
+    WSGIPassAuthorization On
45
+</Location>
46
+
47
+Alias /identity_admin %ADMINWSGI%
48
+<Location /identity_admin>
49
+    SetHandler wsgi-script
50
+    Options +ExecCGI
51
+
52
+    WSGIProcessGroup keystone-admin
53
+    WSGIApplicationGroup %{GLOBAL}
54
+    WSGIPassAuthorization On
55
+</Location>