From 89f60cc08413ad4d05871e82187a42627ff74c14 Mon Sep 17 00:00:00 2001 From: Antonio de la Rosa Date: Mon, 20 Feb 2017 01:57:51 +0100 Subject: [PATCH] Added warning for no use 80 in port --- paramecio/console.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paramecio/console.py b/paramecio/console.py index 74fc1bc..fad0e32 100644 --- a/paramecio/console.py +++ b/paramecio/console.py @@ -32,7 +32,7 @@ def start(): parser.add_argument('--host', help='The host ip or domain where the app is binded', required=False) - parser.add_argument('--port', help='If you deploy for production, set it to 80 value', required=False) + parser.add_argument('--port', help='Change the default port 8080 to other number. Use 80 is not recommended, use 80 for the principal server how nginx or apache', required=False) parser.add_argument('--ssl', help='If the site use ssl, set it', action='store_true')