uwsgi-docs
uwsgi-docs copied to clipboard
Official uWSGI docs, examples, tutorials, tips and tricks
http-to-https is very useful, it works apparently mostly like --http but redirects everything to https, dunno if via 301 or 302.
It would be useful for newbies to find a list external tools that helps managing their uwsgi instances. The ones that comes to mind: https://github.com/xrmx/uwsgitop https://github.com/piglei/uwsgi-sloth/ https://github.com/defcube/uwsgiFouine https://github.com/goir/uwsgicachetop https://github.com/20tab/uwsgi-local-dns-resolver https://github.com/Yelp/uwsgi_metrics
At least two wrong configuration reported in the last few weeks
Some stuff that wasnt immediately obvious to me and might point others into the right direction.
At least muleloop is not documented
See: https://github.com/unbit/uwsgi/issues/885
I'm a newcomer here, but it's my impression that --fs-reload (a la fsmon) has arrived since the [Art of Graceful Reloading](https://github.com/unbit/uwsgi-docs/blob/master/articles/TheArtOfGracefulReloading.rst) document was written. There's strikingly little (no?) documentation of...
hi, uWSGI can be used with the C programming language? Sample C ``` #include int main () { printf ("Hello World"); } ``` Do I have to transfer the output...
It's a small thing, but noticeable when you don't know already... [`wait_fd_read` docs](http://uwsgi-docs.readthedocs.org/en/latest/PythonModule.html#uwsgi.wait_fd_read) simply state you can pass a "timeout" but it doesn't specify what the unit of time is....