summaryrefslogtreecommitdiffstats
path: root/cvp/docker/start-nginx.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cvp/docker/start-nginx.sh')
-rwxr-xr-xcvp/docker/start-nginx.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/cvp/docker/start-nginx.sh b/cvp/docker/start-nginx.sh
new file mode 100755
index 00000000..c9949be4
--- /dev/null
+++ b/cvp/docker/start-nginx.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+FILE=/etc/nginx/sites-enabled/default
+
+if [ "$testapi_url" != "" ]; then
+ sed -i "s/server localhost:8010/server $testapi_url/" $FILE
+fi
+
+service supervisor start
+
+tail -f /var/log/supervisor/supervisord.log