ironic/releasenotes/notes/any-wsgi-8d6ccb0590104146.yaml
Dmitry Tantsur 4504bd5a8d Make ironic-api compatible with WSGI containers other than mod_wsgi
Using ironic-api-wsgi implies mod_wsgi, some other containers require
an importable module. This patch modifies ironic.api.wsgi to be usable
this way and documents it.

Change-Id: I8493eb36293a0214081e0adb59c3a267c9688819
2020-01-24 12:22:46 +01:00

8 lines
241 B
YAML

---
fixes:
- |
Makes ``ironic.api.wsgi`` compatible with WSGI containers that cannot use
an executable WSGI entry point. For example, with gunicorn::
gunicorn -b 0.0.0.0:6385 'ironic.api.wsgi:initialize_wsgi_app(argv=[])'