uwsgi-docs icon indicating copy to clipboard operation
uwsgi-docs copied to clipboard

Official uWSGI docs, examples, tutorials, tips and tricks

Results 97 uwsgi-docs issues
Sort by recently updated
recently updated
newest added

Hi! [Configuration.rst](https://github.com/unbit/uwsgi-docs/blob/9b4ef5fa68fe42929a5e5410165d36fcc7b2d2c7/Configuration.rst) says, that Example: ``` uwsgi --http-socket :9090 --psgi myapp.pl ``` can be written as ``` [uwsgi] http-socket = :9090 psgi = myapp.pl ``` Which is absolutely ridiculous. The...

See the reasoning in the commit messages. I'm not entirely sure how the Linux distribution landscape handles the deprecation of syslog, but at least upstream systemd is quite clear in...

I found max-worker-lifetime-delta had been added, but found no trace of it in the Options.rst * https://github.com/unbit/uwsgi/pull/2021/files * https://github.com/unbit/uwsgi/issues/2020 * https://github.com/unbit/uwsgi/blob/master/core/master_checks.c * https://github.com/unbit/uwsgi/blob/master/core/uwsgi.c

Ref: https://github.com/unbit/uwsgi-docs/blob/master/LogFormat.rst#uwsgi-default-logging ``` log-format = [pid: %(pid)|app: -|req: -/-] %(addr) (%(user)) {%(vars) vars in %(pktsize) bytes} [%(ctime)] %(method) %(uri) => generated %(rsize) bytes in %(msecs) msecs (%(proto) %(status)) %(headers) headers...

In the current doc, network installation command is issued with: ```sh curl http://uwsgi.it/install | bash -s default /tmp/uwsgi ``` HTTP is the original plaintext version of the application protocol running...

The [official instructions](https://uwsgi-docs.readthedocs.io/en/latest/Systemd.html#one-service-per-app-in-systemd) seem to be missing some details or are partially wrong. Here’s what I figured: * systemd needs to control the socket, so if uwsgi complains about things...

max-requests-delta seems not to be implemented on the latest release (2.0.18). I can not find max-requests-delta options on [uwsgi/core/uwsgi.c](https://github.com/unbit/uwsgi/blob/2.0.18/core/uwsgi.c) If you configure max-requests-delta option on the latest release, it does...

I'm running uWSGI in Zerg-mode (please see config and log output below). The idea being that after starting the zerg-server, I can repeatedly call "uwsgi vassal.ini" which will load a...