Browse code

Merge "Keystone also handle /identity and /identity_admin"

Jenkins authored on 2015/07/15 04:27:42
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>