8b0a055d1c
* Bugfixes * fixed spooler 'at' key usage * fixed a memory and fd leak with on-demand Emperor sockets * on __APPLE__ use LOG_NOTICE for syslog plugin * fixed mongrel2 support * hack for avoiding libmongoclient to crash on broken cursor * log alarm is now a uwsgi_log_verbose() wrapper * fixed tuntap router memory corruption * Set ECDHE curve independently from DHE parameters (Hynek Schlawack) * do not wait for a whole Emperor cycle before checking for each waitpid * fix a regression with caller() not indicating the starting *.psgi program (Ævar Arnfjörð Bjarmason) * New features * The Emperor now responds to two new signals: * SIGWINCH: force an emperor rescan of vassals * SIGURG: cleanup the Emperor states (for now it only clears its blacklist) * --build-plugin. Building plugins on-the-fly from git repositories * uwsgi.add_var(key, value). You can now set request variables directly from your app, for better integration with the internal routing subsystem * 'disableheaders' routing action. This new action disables the sending of response headers, independently by the current request state * Smarter Emperor on bad conditions. Now the Emperor completely destroys internal vassal-related structures when it is impossible to correctly kill a broken vassal (both for inconsistent Emperor state or for internal system problems) - Update to 2.0.2: OBS-URL: https://build.opensuse.org/package/show/server:http/uwsgi?expand=0&rev=34 |
||
---|---|---|
.gitattributes | ||
.gitignore | ||
debian.tar.gz | ||
django.ini.example | ||
opensuse.ini.in | ||
rails.yml.example | ||
README.openSUSE | ||
trac.ini.example | ||
uwsgi-1.9.11-systemd_logger-old_systemd.patch | ||
uwsgi-1.9.13-emperor_pg-Wformat.patch | ||
uwsgi-1.9.13-objc_gc-no-fobjc-gc.patch | ||
uwsgi-1.9.17-no-LD_RUN_PATH.patch | ||
uwsgi-1.9.17-plugin_build_path.patch | ||
uwsgi-2.0.3.tar.gz | ||
uwsgi.changes | ||
uwsgi.dsc | ||
uwsgi.ini | ||
uwsgi.service | ||
uwsgi.spec | ||
werkzeug.xml.example |
==================== openSUSE uWSGI Notes ==================== Upgrading from 1.2.6 -------------------- The init script and the sysconfig file /etc/sysconfig/uwsgi are now deprecated in favor of a systemd service and a default configuration file /etc/uwsgi/uwsgi.ini. Emperor Mode ------------ The included uwsgi service runs uWSGI in Emperor mode by default. 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 https://uwsgi-docs.readthedocs.org/en/latest/Emperor.html 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