fix links in the README

This commit is contained in:
benoitc 2013-04-21 07:10:25 +02:00
parent 038ae7a86c
commit 1e5948e1c8

View File

@ -95,7 +95,7 @@ Example with test app::
$ cd examples $ cd examples
$ gunicorn --workers=2 test:app $ gunicorn --workers=2 test:app
gunicorn_django gunicorn_django
+++++++++++++++ +++++++++++++++
@ -122,7 +122,7 @@ file::
... ...
"gunicorn", "gunicorn",
) )
Then you can run:: Then you can run::
python manage.py run_gunicorn python manage.py run_gunicorn
@ -161,8 +161,8 @@ you can use this example to help get you started::
import os import os
import multiprocessing import multiprocessing
from paste.deploy import appconfig, loadapp from paste.deploy import appconfig, loadapp
from gunicorn.app.pasterapp import paste_server from gunicorn.app.pasterapp import paste_server
if __name__ == "__main__": if __name__ == "__main__":
@ -170,7 +170,7 @@ you can use this example to help get you started::
port = int(os.environ.get("PORT", 5000)) port = int(os.environ.get("PORT", 5000))
workers = multiprocessing.cpu_count() * 2 + 1 workers = multiprocessing.cpu_count() * 2 + 1
worker_class = 'gevent' worker_class = 'gevent'
app = loadapp(iniFile, relative_to='.') app = loadapp(iniFile, relative_to='.')
paste_server(app, host='0.0.0.0', port=port, workers=workers, worker_class=worker_class) paste_server(app, host='0.0.0.0', port=port, workers=workers, worker_class=worker_class)
@ -186,10 +186,10 @@ details.
.. _freenode: http://freenode.net .. _freenode: http://freenode.net
.. _Eventlet: http://eventlet.net .. _Eventlet: http://eventlet.net
.. _Gevent: http://gevent.org .. _Gevent: http://gevent.org
.. _FAQ: http://gunicorn.org/faq.html .. _FAQ: http://docs.gunicorn.org/en/latest/faq.html
.. _libev: http://software.schmorp.de/pkg/libev.html .. _libev: http://software.schmorp.de/pkg/libev.html
.. _libevent: http://monkey.org/~provos/libevent .. _libevent: http://monkey.org/~provos/libevent
.. _`production page`: http://gunicorn.org/deployment.html .. _`production page`: http://docs.gunicorn.org/en/latest/deploy.html
.. _`config file`: http://gunicorn.org/configuration.html .. _`config file`: http://docs.gunicorn.org/en/latest/configure.html
.. _setproctitle: http://pypi.python.org/pypi/setproctitle/ .. _setproctitle: http://pypi.python.org/pypi/setproctitle/
.. _LICENSE: http://github.com/benoitc/gunicorn/blob/master/LICENSE .. _LICENSE: http://github.com/benoitc/gunicorn/blob/master/LICENSE