Software:uWSGI
From HandWiki
Developer(s) | Unbit |
---|---|
Written in | C |
Operating system | Cross-platform |
Type | Application server |
License | GNU General Public License v2.0 + linking exception[1] |
Website | uwsgi-docs |
uWSGI is an open source software application that "aims at developing a full stack for building hosting services".[2] It is named after the Web Server Gateway Interface (WSGI), which was the first plugin supported by the project.[2] uWSGI is maintained by Italian based software company unbit.[3]
uwsgi (all lowercase) is the native binary protocol that uWSGI uses to communicate with other servers.[4]
uWSGI is often used in conjunction with web servers such as Cherokee and Nginx, which offer direct support for uWSGI's native uwsgi protocol, to serve Python web applications such as Django.[5] For example, data may flow like this: HTTP client ↔ Nginx ↔ uWSGI ↔ Python app.[6]
A common alternative to uWSGI is Gunicorn.
References
- ↑ "uwsgi/LICENSE at master". Unbit. https://github.com/unbit/uwsgi/blob/master/LICENSE.
- ↑ 2.0 2.1 "The uWSGI project". uWSGI. 2016. https://uwsgi-docs.readthedocs.io/en/latest/.
- ↑ "Unbit". https://unbit.it/.
- ↑ "The uwsgi Protocol — uWSGI 2.0 documentation". https://uwsgi-docs.readthedocs.io/en/latest/Protocol.html.
- ↑ Tezer, O. S. (28 October 2013). "A Comparison of Web Servers for Python Based Web Applications". Digital Ocean. https://www.digitalocean.com/community/tutorials/a-comparison-of-web-servers-for-python-based-web-applications.
- ↑ "Cisco DevNet: APIs, SDKs, Sandbox, and Community for Cisco Developers". https://developer.cisco.com/docs/sandbox-api/#!nginx-uwsgi/request-flow.
External links
- How to run uWSGI, blog post
Original source: https://en.wikipedia.org/wiki/UWSGI.
Read more |