summaryrefslogtreecommitdiffstats
path: root/run-server.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run-server.sh')
-rwxr-xr-xrun-server.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/run-server.sh b/run-server.sh
index 24ff0e8..21fb318 100755
--- a/run-server.sh
+++ b/run-server.sh
@@ -5,13 +5,16 @@
if [ $(basename $0) = run-server.sh ]; then
PORT=${1:-8000}
+ OPTIONS=
cd $(dirname $0)
else
PORT=80
+ OPTIONS="-d /var/log/acf2.log --pidfile /var/run/acf2.pid"
cd /usr/share/acf2
fi
exec uwsgi -M --http-socket :$PORT \
--plugin /usr/lib/uwsgi/lua_plugin.so --lua server.lua \
--remap-modifier 6:0 \
- --static-map /browser=web --static-index client.html
+ --static-map /browser=web --static-index client.html \
+ $OPTIONS