summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2017-02-03 12:38:10 -0800
committerSteve Piercy <web@stevepiercy.com>2017-02-03 12:38:10 -0800
commitce889449afa3147e77c987067afdcca31bcd9f05 (patch)
tree981601e888c95ebef4f4a78c1361d0d68275cff2 /docs
parentc83c7670a8cf2b73df871a17e27c76d39b4f9334 (diff)
downloadpyramid-ce889449afa3147e77c987067afdcca31bcd9f05.tar.gz
pyramid-ce889449afa3147e77c987067afdcca31bcd9f05.tar.bz2
pyramid-ce889449afa3147e77c987067afdcca31bcd9f05.zip
update links and reST syntax for mod_wsgi
Diffstat (limited to 'docs')
-rw-r--r--docs/glossary.rst2
-rw-r--r--docs/narr/introduction.rst2
-rw-r--r--docs/narr/project.rst4
-rw-r--r--docs/tutorials/modwsgi/index.rst2
4 files changed, 5 insertions, 5 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index b4673f73e..0f299c169 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -568,7 +568,7 @@ Glossary
:ref:`adding_and_overriding_renderers` for more information.
mod_wsgi
- `mod_wsgi <https://code.google.com/archive/p/modwsgi>`_ is an Apache
+ `mod_wsgi <https://modwsgi.readthedocs.io>`_ is an Apache
module developed by Graham Dumpleton. It allows :term:`WSGI` applications
(such as applications developed using :app:`Pyramid`) to be served using
the Apache web server.
diff --git a/docs/narr/introduction.rst b/docs/narr/introduction.rst
index 7027d6601..3aa603bcf 100644
--- a/docs/narr/introduction.rst
+++ b/docs/narr/introduction.rst
@@ -433,7 +433,7 @@ for speed. It only does as much work as absolutely necessary when you ask it
to get a job done. Extraneous function calls and suboptimal algorithms in its
core codepaths are avoided. It is feasible to get, for example, between 3500
and 4000 requests per second from a simple Pyramid view on commodity dual-core
-laptop hardware and an appropriate WSGI server (mod_wsgi or gunicorn). In any
+laptop hardware and an appropriate WSGI server (:term:`mod_wsgi` or gunicorn). In any
case, performance statistics are largely useless without requirements and
goals, but if you need speed, Pyramid will almost certainly never be your
application's bottleneck; at least no more than Python will be a bottleneck.
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index be2e5a389..f32fad370 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -1089,13 +1089,13 @@ configuration on a local system that you have complete control over; it will
provide the best development experience.
One popular production alternative to the default Waitress server is
-:term:`mod_wsgi`. You can use mod_wsgi to serve your :app:`Pyramid` application
+:term:`mod_wsgi`. You can use ``mod_wsgi`` to serve your :app:`Pyramid` application
using the Apache web server rather than any "pure-Python" server like Waitress.
It is fast and featureful. See :ref:`modwsgi_tutorial` for details.
Another good production alternative is :term:`Green Unicorn` (aka
``gunicorn``). It's faster than Waitress and slightly easier to configure than
-mod_wsgi, although it depends, in its default configuration, on having a
+``mod_wsgi``, although it depends, in its default configuration, on having a
buffering HTTP proxy in front of it. It does not, as of this writing, work on
Windows.
diff --git a/docs/tutorials/modwsgi/index.rst b/docs/tutorials/modwsgi/index.rst
index ef42589c6..0c3b58bac 100644
--- a/docs/tutorials/modwsgi/index.rst
+++ b/docs/tutorials/modwsgi/index.rst
@@ -120,5 +120,5 @@ specific path information for commands and files.
:term:`mod_wsgi` has many knobs and a great variety of deployment modes. This
is just one representation of how you might use it to serve up a :app:`Pyramid`
application. See the `mod_wsgi configuration documentation
-<https://code.google.com/archive/p/modwsgi/wikis/ConfigurationGuidelines.wiki>`_
+<https://modwsgi.readthedocs.io/en/develop/configuration.html>`_
for more in-depth configuration information.