From b74fbf5199eff232a342b14d90e466b56d30cc76 Mon Sep 17 00:00:00 2001 From: Daniele Sluijters Date: Fri, 6 Jun 2014 00:32:23 +0200 Subject: [PATCH] README: uwsgi needs --socket, not --http. Fixes #76 --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 4455def..1819207 100644 --- a/README.rst +++ b/README.rst @@ -393,7 +393,7 @@ Now we need to start uwsgi: .. code-block:: bash - $ uwsgi --http :9090 --wsgi-file /var/www/puppetboard/wsgi.py + $ uwsgi --socket :9090 --wsgi-file /var/www/puppetboard/wsgi.py Feel free to change the port to something other than ``9090``.