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

The mod_uwsgi docs say this: "All of the options can be set per-host or per-location." but if I try to set uWSGIMaxVars outside of a Location section then apache gives...

The 'skip-atexit' option is displayed two times (https://uwsgi-docs.readthedocs.io/en/latest/Options.html#skip-atexit). The difference is in the help info: the first one is about hooks, the second one is about teardown. I have two...

I used uwsgi+nginx and want to start Python application with param. Right these solution is working `python3.5 uswgi.py matcher` what is uwsgi command param to send param "matcher"?

I was following the docs on this page but could never successfully `systemctl enable [email protected]`. Adding this install directive fixed it.

I've spent days of trying and searching through google with all sorts of conflicting results. None of which ended up working for getting mod_proxy_uwsgi working. The best I could get...

Allows `X-Request-Start:` header to be properly implemented, I guess.

In the quickstart documentation, the following code is put in `app.py`: ``` def application(env, start_response): start_response('200 OK', [('Content-Type','text/html')]) return [b"Hello World"] ``` I have followed all the previous steps, but...

A documentation page with list of all the built-in plugins, including a brief description, would be really helpful.

I tried doing a bit of research to fix this and could not make much progress. Building docs directly after cloning works well, but switching to sphinx-rtd-theme destroys the sidebar...

I recently discovered that uwsgi ignores unknown settings silently by default. This caught me by surprise, and sure enough, when I went to check some of my production configs, I...