Current Series Release Notes

29.0.0.0rc1-8

New Features

  • A new module, nova.wsgi, has been added as a place to gather WSGI application objects. This is intended to ease deployment by providing a consistent location for these objects. For example, if using uWSGI then instead of:

    [uwsgi]
    wsgi-file = /bin/nova-api-wsgi
    

    You can now use:

    [uwsgi]
    module = nova.wsgi.osapi_compute:application
    

    This also simplifies deployment with other WSGI servers that expect module paths such as gunicorn.