summaryrefslogtreecommitdiffstats
path: root/scripts/xds-server-start.sh
diff options
context:
space:
mode:
authorRonan Le Martret <ronan.lemartret@iot.bzh>2017-06-27 14:45:53 +0200
committerRonan Le Martret <ronan.lemartret@iot.bzh>2017-06-27 14:53:39 +0200
commit8c06a00c2437d0facb61b251c10a4a5729369166 (patch)
tree01a8971cc79eff2ba3d172303c2748bbcc22bf2d /scripts/xds-server-start.sh
parentea3b17feb2eb2d54bbc27dc75eee60bd1fe67d27 (diff)
Update Readme file
* Add systemd service file * Add autoconfig for ssh contener * Add http port conf to xds-server-start.sh script Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
Diffstat (limited to 'scripts/xds-server-start.sh')
-rwxr-xr-xscripts/xds-server-start.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/xds-server-start.sh b/scripts/xds-server-start.sh
index 601d912..dc108fe 100755
--- a/scripts/xds-server-start.sh
+++ b/scripts/xds-server-start.sh
@@ -8,6 +8,7 @@
[ -z "$XDS_WWWDIR" ] && XDS_WWWDIR=webapp/dist
[ -z "$LOGLEVEL" ] && LOGLEVEL=info
[ -z "$LOGDIR" ] && LOGDIR=/tmp/xds-server/logs
+[ -z "PORT_SRV" ] && PORT_SRV=8000
[ -z "$PORT_GUI" ] && PORT_GUI=8384
[ -z "$API_KEY" ] && API_KEY="1234abcezam"
[ -z "$UPDATE_XDS_TARBALL" ] && UPDATE_XDS_TARBALL=1
@@ -22,6 +23,7 @@ if [ ! -f "${XDS_CONFFILE}" ]; then
[ ! -f "$XDS_WWWDIR/index.html" ] && { echo "Cannot determine XDS-server webapp directory."; exit 1; }
cat <<EOF > ${XDS_CONFFILE}
{
+ "HTTPPort": ${PORT_SRV},
"webAppDir": "${XDS_WWWDIR}",
"shareRootDir": "${XDS_SHAREDIR}",
"logsDir": "${LOGDIR}",