Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
Choose a Base Repository
Pylons/waitress
BenAllums/waitress
Flimm/waitress
ImaduddinAMajid/waitress
Inventorum/waitress
JAVTAMVI/waitress
JasonOldWoo/waitress
Kaemka/waitress
Kerydwen/waitress
LuciferJack/waitress
Menhirs-Screeps/waitress
Natim/waitress
NotBobTheBuilder/waitress
Preston-Landers/waitress
SixiemeEtage/waitress
ajmitch/waitress
aktiur/waitress
alexanderlukanin13/waitress
anthrax3/waitress
aodag/waitress
aragilar/waitress
atorkhov/waitress
baijum/waitress
bertjwregeer/waitress
bostrick/waitress
bwarren2/waitress
carriercomm/waitress
caseylitton/waitress
csingley/waitress
dalavanmanphonsy/waitress
dbaty/waitress
defnull/waitress
domruf/waitress
dude0815/waitress
e42s/waitress
ehsan-keshavarzian/waitress
eli-collins/waitress
ericatkin/waitress
ewdurbin/waitress
frankdarcy/waitress
gjo/waitress
grf123/waitress
hathawsh/waitress
j4mie/waitress
jenniemanphonsy/waitress
jmwhitfi/waitress
jor123/waitress
jorgeelas/waitress
k0s/waitress
kaymccormick/waitress
kevinelong/waitress
kpinc/waitress
levigross/waitress
lifuzu/waitress
lordjabez/waitress
madjar/waitress
malor/waitress
marcinkuzminski/waitress
mgedmin/waitress
mikeckennedy/waitress
mindchasers/waitress
mjstephan/waitress
msabramo/waitress
olt/waitress
pomarec/waitress
python-oz/waitress
rcoor/waitress
rmiyashiro/waitress
robertlagrant/waitress
rsiemens/waitress
saschagottfried/waitress
sephialife/waitress
sheepcat/waitress
sideffect0/waitress
stevepiercy/waitress
tarekziade/waitress
tshepang/waitress
vinitkumar/waitress
wwitzel3/waitress
xetch/waitress
yuzhougit/waitress
Nothing to show
Choose a Head Repository
Pylons/waitress
BenAllums/waitress
Flimm/waitress
ImaduddinAMajid/waitress
Inventorum/waitress
JAVTAMVI/waitress
JasonOldWoo/waitress
Kaemka/waitress
Kerydwen/waitress
LuciferJack/waitress
Menhirs-Screeps/waitress
Natim/waitress
NotBobTheBuilder/waitress
Preston-Landers/waitress
SixiemeEtage/waitress
ajmitch/waitress
aktiur/waitress
alexanderlukanin13/waitress
anthrax3/waitress
aodag/waitress
aragilar/waitress
atorkhov/waitress
baijum/waitress
bertjwregeer/waitress
bostrick/waitress
bwarren2/waitress
carriercomm/waitress
caseylitton/waitress
csingley/waitress
dalavanmanphonsy/waitress
dbaty/waitress
defnull/waitress
domruf/waitress
dude0815/waitress
e42s/waitress
ehsan-keshavarzian/waitress
eli-collins/waitress
ericatkin/waitress
ewdurbin/waitress
frankdarcy/waitress
gjo/waitress
grf123/waitress
hathawsh/waitress
j4mie/waitress
jenniemanphonsy/waitress
jmwhitfi/waitress
jor123/waitress
jorgeelas/waitress
k0s/waitress
kaymccormick/waitress
kevinelong/waitress
kpinc/waitress
levigross/waitress
lifuzu/waitress
lordjabez/waitress
madjar/waitress
malor/waitress
marcinkuzminski/waitress
mgedmin/waitress
mikeckennedy/waitress
mindchasers/waitress
mjstephan/waitress
msabramo/waitress
olt/waitress
pomarec/waitress
python-oz/waitress
rcoor/waitress
rmiyashiro/waitress
robertlagrant/waitress
rsiemens/waitress
saschagottfried/waitress
sephialife/waitress
sheepcat/waitress
sideffect0/waitress
stevepiercy/waitress
tarekziade/waitress
tshepang/waitress
vinitkumar/waitress
wwitzel3/waitress
xetch/waitress
yuzhougit/waitress
Nothing to show
  • 1 commit
  • 2 files changed
  • 0 commit comments
  • 1 contributor
Commits on Sep 22, 2018
Use contextual versionadded directive.
Use proper casing for nginx.
Showing with 6 additions and 8 deletions.
  1. +3 −3 docs/reverse-proxy.rst
  2. +3 −5 docs/runner.rst
View
@@ -17,7 +17,7 @@ your reverse proxy to pass along the ``Host`` header sent by the client to
Waitress, in either case, as it will be used by most applications to generate
correct URLs.
For example, when using Nginx as a reverse proxy, you might add the following
For example, when using nginx as a reverse proxy, you might add the following
lines in a ``location`` section::
proxy_set_header Host $host;
@@ -66,7 +66,7 @@ Passing the ``X_FORWARDED_PROTO`` header to set ``wsgi.url_scheme``
If your proxy accepts both HTTP and HTTPS URLs, and you want your application
to generate the appropriate url based on the incoming scheme, also set up
your proxy to send a ``X-Forwarded-Proto`` with the original URL scheme along
with each proxied request. For example, when using Nginx::
with each proxied request. For example, when using nginx::
proxy_set_header X-Forwarded-Proto $scheme;
@@ -131,7 +131,7 @@ the client to your Waitress server, as well as sending along a
If your proxy accepts both HTTP and HTTPS URLs, and you want your application
to generate the appropriate url based on the incoming scheme, also set up
your proxy to send a ``X-Forwarded-Proto`` with the original URL scheme along
with each proxied request. For example, when using Nginx::
with each proxied request. For example, when using nginx::
proxy_set_header X-Forwarded-Proto $scheme;
View
@@ -3,13 +3,11 @@
waitress-serve
--------------
Waitress comes bundled with a thin command-line wrapper around the
``waitress.serve`` function called ``waitress-serve``. This is useful for
development, and in production situations where serving of static assets is
delegated to a reverse proxy, such as Nginx or Apache.
.. versionadded:: 0.8.4
Waitress comes bundled with a thin command-line wrapper around the ``waitress.serve`` function called ``waitress-serve``.
This is useful for development, and in production situations where serving of static assets is delegated to a reverse proxy, such as nginx or Apache.
``waitress-serve`` takes the very same :ref:`arguments <arguments>` as the
``waitress.serve`` function, but where the function's arguments have
underscores, ``waitress-serve`` uses hyphens. Thus::

No commit comments for this range