Remove admin interface in sample Apache file

We provide a sample Apache file for mod_wsgi that references the admin
port 35357. This is consumed by distributors such as RDO[1]. To bring
consumers of this example file in line with the other distributors,
this patch removes the vhost for the admin port from the example.

[1] https://review.rdoproject.org/r/gitweb?p=openstack/keystone-distgit.git;a=blob;f=openstack-keystone.spec;h=b59c2a7c1ca546d205dafe278e035da5ee829728;hb=refs/heads/queens-rdo#l209

Change-Id: I86b5a43beb18e730c2b18a36316d51751e6c1696
This commit is contained in:
Colleen Murphy 2018-03-24 12:56:02 +01:00
parent 6d02233676
commit dc825c9543
1 changed files with 0 additions and 35 deletions

View File

@ -1,5 +1,4 @@
Listen 5000 Listen 5000
Listen 35357
<VirtualHost *:5000> <VirtualHost *:5000>
WSGIDaemonProcess keystone-public processes=5 threads=1 user=keystone group=keystone display-name=%{GROUP} WSGIDaemonProcess keystone-public processes=5 threads=1 user=keystone group=keystone display-name=%{GROUP}
@ -25,30 +24,6 @@ Listen 35357
</Directory> </Directory>
</VirtualHost> </VirtualHost>
<VirtualHost *:35357>
WSGIDaemonProcess keystone-admin processes=5 threads=1 user=keystone group=keystone display-name=%{GROUP}
WSGIProcessGroup keystone-admin
WSGIScriptAlias / /usr/local/bin/keystone-wsgi-admin
WSGIApplicationGroup %{GLOBAL}
WSGIPassAuthorization On
LimitRequestBody 114688
<IfVersion >= 2.4>
ErrorLogFormat "%{cu}t %M"
</IfVersion>
ErrorLog /var/log/apache2/keystone.log
CustomLog /var/log/apache2/keystone_access.log combined
<Directory /usr/local/bin>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
<IfVersion < 2.4>
Order allow,deny
Allow from all
</IfVersion>
</Directory>
</VirtualHost>
Alias /identity /usr/local/bin/keystone-wsgi-public Alias /identity /usr/local/bin/keystone-wsgi-public
<Location /identity> <Location /identity>
SetHandler wsgi-script SetHandler wsgi-script
@ -58,13 +33,3 @@ Alias /identity /usr/local/bin/keystone-wsgi-public
WSGIApplicationGroup %{GLOBAL} WSGIApplicationGroup %{GLOBAL}
WSGIPassAuthorization On WSGIPassAuthorization On
</Location> </Location>
Alias /identity_admin /usr/local/bin/keystone-wsgi-admin
<Location /identity_admin>
SetHandler wsgi-script
Options +ExecCGI
WSGIProcessGroup keystone-admin
WSGIApplicationGroup %{GLOBAL}
WSGIPassAuthorization On
</Location>