forked from pool/uwsgi
200ee43667
* Bugfixes * fixed python3 support on older compilers/libc * allow starting in spooler-only mode * fixed cache bitmap support and added test suite (credits: Danila Shtan) * fixed ftime log var * added async remote signal management * fixed end-for and end-if * fixed loop in internal-routing response chain * fixed pypy execute_source usage * logpipe: Don't setsid() twice (credits: INADA Naoki) * New features and improvements * CGI plugin * The plugin has been improved to support streaming * The long-awaited async support is finally ready * PSGI loading improvements * The PSGI loader now tries to use Plack::Util::load_psgi() function instead of simple eval OBS-URL: https://build.opensuse.org/package/show/server:http/uwsgi?expand=0&rev=31 |
||
---|---|---|
.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.2.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