diff options
Diffstat (limited to 'install/install.sh')
-rwxr-xr-x | install/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/install.sh b/install/install.sh index 7ca43c1ae..9a3b9b0f8 100755 --- a/install/install.sh +++ b/install/install.sh @@ -35,10 +35,10 @@ PG_VERSION=9.1 VERSION=stable # change it for each instance on a same server -UWSGI_PORT=8891 +UWSGI_PORT=${UWSGI_PORT-8891} # webserver port - default "80" -NGINX_PORT="80" +NGINX_PORT=${NGINX_PORT-80} # don't forget the trailing slash INSTALL_PREFIX=/srv/ |