From 8ef3aafb52da1dec394e991cb3513402c4e661f0 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 24 Feb 2019 15:53:01 +0100 Subject: [PATCH] Added missing doc line in backend.http --- platypush/backend/http/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/platypush/backend/http/__init__.py b/platypush/backend/http/__init__.py index e31fef13..91e8f8f1 100644 --- a/platypush/backend/http/__init__.py +++ b/platypush/backend/http/__init__.py @@ -58,6 +58,9 @@ class HttpBackend(Backend): Base command to run the web server over uwsgi:: uwsgi --http :8008 --module platypush.backend.http.uwsgi --master --processes 4 --threads 4 + + Bear in mind that the main webapp is defined in ``platypush.backend.http.app:application`` + and the WSGI startup script is stored under ``platypush/backend/http/uwsgi.py``. """ _DEFAULT_HTTP_PORT = 8008