Go to file
2012-09-25 09:08:15 +00:00
.gitattributes Accepting request 133409 from home:jimfunk 2012-09-10 10:57:08 +00:00
.gitignore Accepting request 133409 from home:jimfunk 2012-09-10 10:57:08 +00:00
django.ini.example Accepting request 133409 from home:jimfunk 2012-09-10 10:57:08 +00:00
opensuse.ini.in Accepting request 133409 from home:jimfunk 2012-09-10 10:57:08 +00:00
rails.yml.example Accepting request 133409 from home:jimfunk 2012-09-10 10:57:08 +00:00
README.openSUSE Accepting request 133409 from home:jimfunk 2012-09-10 10:57:08 +00:00
trac.ini.example Accepting request 133409 from home:jimfunk 2012-09-10 10:57:08 +00:00
uwsgi-1.2.6-plugin_build_path.patch Accepting request 133409 from home:jimfunk 2012-09-10 10:57:08 +00:00
uwsgi-1.2.6.tar.gz Accepting request 133409 from home:jimfunk 2012-09-10 10:57:08 +00:00
uwsgi.changes - Install uwsgidecorators module for Python plugin 2012-09-12 01:15:59 +00:00
uwsgi.init - Install uwsgidecorators module for Python plugin 2012-09-12 01:15:59 +00:00
uwsgi.spec - Install uwsgidecorators module for Python plugin 2012-09-12 01:15:59 +00:00
uwsgi.sysconfig - Install uwsgidecorators module for Python plugin 2012-09-12 01:15:59 +00:00
werkzeug.xml.example Accepting request 133409 from home:jimfunk 2012-09-10 10:57:08 +00:00

====================
openSUSE uWSGI Notes
====================

Emperor Mode
------------

The included init script runs uWSGI in Emperor mode. It will monitor the
/etc/uwsgi/vassals directory for configurations and will automatically load
and restart uWSGI processes when configuration files are placed there or
modified. Some example configurations are provided in the directory. To enable
one, rename it without the .example at the end and edit for your application.

For more information on Emperor mode, see
http://projects.unbit.it/uwsgi/wiki/Emperor


Plugins
-------

This uWSGI package is fully modular. Some plugins, such as the Python plugin,
are not embedded in the main server binary.

This means that your application configurations need to specify the plugins it
uses. For example, a Python application will need the following option
specified:

    plugins = python

Alternatively, uWSGI has a autoload option that will load any plugins when it
encounters options for those plugins in the configuration. To enable that, use
the following in the configuration:

    autoload = 1