Fix:Django server default port back to 80
authorYasin <mohammed-yasin.rahman@lip6.fr>
Tue, 11 Mar 2014 13:10:25 +0000 (14:10 +0100)
committerYasin <mohammed-yasin.rahman@lip6.fr>
Tue, 11 Mar 2014 13:10:25 +0000 (14:10 +0100)
devel/server-loop.sh

index 51159ad..c77258f 100755 (executable)
@@ -4,7 +4,7 @@ cd $DIRNAME/..
 
 # default port : if hostname starts with z -> use 8080 ; otherwise take 80
 #hostname | grep -q '^z' && port=8080 || port=8080
-hostname | grep -q '^z' && port=8080 || port=8080
+hostname | grep -q '^z' && port=8080 || port=80
 [[ -n "$@" ]] && port=$1
 
 while true; do