add irc channel to the readme.

This commit is contained in:
Benoit Chesneau 2010-01-23 17:16:36 +01:00
parent 1a3c09b1a8
commit 3609b65385
2 changed files with 3 additions and 4 deletions

View File

@ -3,7 +3,7 @@ About
gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and nothing else.
This is a port of Unicorn (http://unicorn.bogomips.org/) in Python.
This is a port of Unicorn (http://unicorn.bogomips.org/) in Python. Meet us on `#gunicorn irc channel <http://webchat.freenode.net/?channels=gunicorn>`_ on `freenode`_.
Installation
------------
@ -73,7 +73,7 @@ If you get the following error :
AssertionError: The EvalException middleware is not usable in a multi-process environment
you have to set the debug option n your paste configuration file to False.
you have to set the debug option in your paste configuration file to False.
Kernel Parameters
@ -115,3 +115,4 @@ This setting is generally only required on machines that are being used to test
Check `this article`_ for more information on ephemeral ports.
.. _this article: http://www.ncftp.com/ncftpd/doc/misc/ephemeral_ports.html
.. _freenode: http://freenode.net

View File

@ -55,8 +55,6 @@ def main(usage, get_app):
arbiter = Arbiter((opts.host, opts.port), opts.workers, app)
arbiter.run()
def paste_server(app, global_conf=None, host="127.0.0.1", port=None,
*args, **kwargs):
if not port: