Update README.rst (#289)

This commit is contained in:
Robin De Schepper 2020-01-11 23:55:17 +01:00 committed by Matthew Planchard
parent 5e3d34324c
commit 124a2a9c43
1 changed files with 5 additions and 1 deletions

View File

@ -610,7 +610,7 @@ explained in `bottle's documentation <http://bottlepy.org/docs/dev/deployment.ht
processes=1 threads=5 maximum-requests=500 \
display-name=wsgi-pypisrv inactivity-timeout=300
WSGIProcessGroup pypisrv
WSGIPassAuthorization On # (Optional) Use also apache's authentication.
WSGIPassAuthorization On # Required for authentication (https://github.com/pypiserver/pypiserver/issues/288)
<Directory /yoursite/wsgi >
Require all granted
@ -647,6 +647,10 @@ explained in `bottle's documentation <http://bottlepy.org/docs/dev/deployment.ht
.. Note::
For security reasons, notice that the ``Directory`` directive grants access
to a directory holding the ``wsgi`` start-up script, alone; nothing else.
.. Note::
To enable HTTPS support on Apache, configure the directive that contains the
WSGI configuration to use SSL.
``gunicorn``
~~~~~~~~~~~~