Remove sample mod_wsgi config file

Per commit 8aaaa64b17, this is a duplicate
of what is (or rather, was [1]) found in DevStack. We cannot support it
easily going forward as we are planning to remove the wsgi scripts, so
simply drop it.

Change-Id: I4e8b54f6e9712665647c0c0e13f14e9b2bc46001
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This commit is contained in:
Stephen Finucane 2025-05-09 11:07:59 +01:00
parent 9f47af17e1
commit 89a1574272
2 changed files with 3 additions and 38 deletions

View file

@ -62,7 +62,7 @@ Install and configure components
.. code-block:: console
# dnf install openstack-keystone httpd python3-mod_wsgi
# dnf install openstack-keystone httpd uwsgi-plugin-python3
.. end
@ -164,11 +164,11 @@ Configure the Apache HTTP server
The ``ServerName`` entry will need to be added if it does not already exist.
#. Create a link to the ``/usr/share/keystone/wsgi-keystone.conf`` file:
#. Create a link to the ``/usr/share/keystone/uwsgi-keystone.conf`` file:
.. code-block:: console
# ln -s /usr/share/keystone/wsgi-keystone.conf /etc/httpd/conf.d/
# ln -s /usr/share/keystone/uwsgi-keystone.conf /etc/httpd/conf.d/
.. end

View file

@ -1,35 +0,0 @@
Listen 5000
<VirtualHost *:5000>
WSGIDaemonProcess keystone-public processes=5 threads=1 user=keystone group=keystone display-name=%{GROUP}
WSGIProcessGroup keystone-public
WSGIScriptAlias / /usr/local/bin/keystone-wsgi-public
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
<Location /identity>
SetHandler wsgi-script
Options +ExecCGI
WSGIProcessGroup keystone-public
WSGIApplicationGroup %{GLOBAL}
WSGIPassAuthorization On
</Location>