blob: f2b16493ea746bfd31199cfd9501a15cf1537ee5 [file] [log] [blame]
Matteo Scandoloeb0d11c2017-08-08 13:05:26 -07001
2{#
3Copyright 2017-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16#}
17
18
rdudyalab086cf32016-08-11 00:07:45 -040019Listen 5000
20Listen 35357
21
22<VirtualHost *:5000>
23 WSGIDaemonProcess keystone-public processes=5 threads=1 user=keystone group=keystone display-name=%{GROUP}
24 WSGIProcessGroup keystone-public
25 WSGIScriptAlias / /usr/bin/keystone-wsgi-public
26 WSGIApplicationGroup %{GLOBAL}
27 WSGIPassAuthorization On
28 ErrorLogFormat "%{cu}t %M"
29 ErrorLog /var/log/apache2/keystone.log
30 CustomLog /var/log/apache2/keystone_access.log combined
31
32 <Directory /usr/bin>
33 Require all granted
34 </Directory>
35</VirtualHost>
36
37<VirtualHost *:35357>
38 WSGIDaemonProcess keystone-admin processes=5 threads=1 user=keystone group=keystone display-name=%{GROUP}
39 WSGIProcessGroup keystone-admin
40 WSGIScriptAlias / /usr/bin/keystone-wsgi-admin
41 WSGIApplicationGroup %{GLOBAL}
42 WSGIPassAuthorization On
43 ErrorLogFormat "%{cu}t %M"
44 ErrorLog /var/log/apache2/keystone.log
45 CustomLog /var/log/apache2/keystone_access.log combined
46
47 <Directory /usr/bin>
48 Require all granted
49 </Directory>
50</VirtualHost>