diff options
| -rwxr-xr-x | run-local.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/run-local.sh b/run-local.sh index f98cfd21..570d0c3d 100755 --- a/run-local.sh +++ b/run-local.sh @@ -6,7 +6,12 @@ quit_if_no_neo4j_running CONFIG=res/etc/rhizi-server.conf EXAMPLE=res/etc/rhizi-server.conf.example HTPASSWD=res/etc/htpasswd -DOMAIN=cri.rhizi.net +if [ "x$DOMAIN" == "x" ]; then + echo using default domain + DOMAIN=default.rhizi.net +else + echo using $DOMAIN domain +fi if [ ! -f $CONFIG ]; then echo "copying $EXAMPLE to $CONF" echo "please edit it as you see fit" |
