Skip to content

Commit 14477d8

Browse files
committed
add uwsgi page with a few initial resources
1 parent 8eb7198 commit 14477d8

File tree

5 files changed

+54
-1
lines changed

5 files changed

+54
-1
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
title: uWSGI
2+
category: page
3+
slug: uwsgi
4+
sortorder: 0524
5+
toc: False
6+
sidebartitle: uWSGI
7+
meta: uWSGI is a Python WSGI server implementation typically used for running Python web applications.
8+
9+
10+
# uWSGI
11+
[uWSGI](https://uwsgi-docs.readthedocs.io/en/latest/)
12+
([source code](https://github.com/unbit/uwsgi)), pronounced "mu wiz gee",
13+
is a [Web Server Gateway Interface (WSGI) server](/wsgi-servers.html)
14+
implementation that is typically used to run Python web applications.
15+
16+
<a href="https://uwsgi-docs.readthedocs.io/en/latest/" style="border: none;"><img src="/img/logos/uwsgi.png" width="100%" alt="Official uWSGI logo." class="shot"></a>
17+
18+
19+
### uWSGI resources
20+
* The official [Django](/django.html) framework docs on
21+
[how to use Django with uWSGI](https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/uwsgi/)
22+
along with the corresponding official
23+
[uWSGI Django docs](https://uwsgi.readthedocs.io/en/latest/tutorials/Django_and_nginx.html)
24+
are great places to start when you are trying to [deploy](/deployment.html)
25+
your Django project.
26+
27+
* [The uWSGI Swiss Army Knife](https://lincolnloop.com/blog/uwsgi-swiss-army-knife/)
28+
examines a few lesser-known uWSGI features that support serving static
29+
files, working with SSL, caching and asynchronous task execution.
30+
31+
* [How To Serve Django Applications with uWSGI and Nginx on Debian 8](https://www.digitalocean.com/community/tutorials/how-to-serve-django-applications-with-uwsgi-and-nginx-on-debian-8)
32+
shows how to set up a [Django](/django.html) web app on Debian Linux that
33+
uses [Nginx](/nginx.html) as a [web server](/web-servers.html) and reverse
34+
proxy for the uWSGI server.

content/pages/meta/00-change-log.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on GitHub.
1616

1717
## 2019
1818
### February
19+
* Add [uWSGI](/uwsgi.html) page with a few initial resources.
1920
* Updated the [Neo4j](/neo4j.html) and [microservices](/microservices.html)
2021
pages with more resources.
2122
* Added a bunch more [bots](/bots.html) resources.

static/img/logos/uwsgi.png

53.3 KB
Loading

theme/templates/choices/uwsgi.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<h3>What other Python topics do you want to learn about?</h3>
2+
<div class="row">
3+
<div class="c4">
4+
<div class="well select-next">
5+
{% include "choices/buttons/databases.html" %}
6+
</div>
7+
</div>
8+
<div class="c4">
9+
<div class="well select-next">
10+
{% include "choices/buttons/logging.html" %}
11+
</div>
12+
</div>
13+
<div class="c4">
14+
<div class="well select-next">
15+
{% include "choices/buttons/monitoring.html" %}
16+
</div>
17+
</div>
18+
</div>

theme/templates/table-of-contents.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ <h4>5.5 <a href="/web-servers.html">Web servers</a></h4>
171171
<h4>5.6 <a href="/wsgi-servers.html">WSGI servers</a></h4>
172172
<div class="tc"><a href="/green-unicorn-gunicorn.html">Green Unicorn</a></div>
173173
<div class="tc sn">mod_wsgi</div>
174-
<div class="tc sn">uWSGI</div>
174+
<div class="tc"><a href="/uwsgi.html">uWSGI</a></div>
175175
<h4>5.7 <a href="/continuous-integration.html">Continuous integration</a></h4>
176176
<div class="tc"><a href="/jenkins.html">Jenkins</a></div>
177177
<div class="tc sn">GoCD</div>

0 commit comments

Comments
 (0)