blob: efa51afdf559eb9d1a315ed40b6cc09a6e770ddf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
# Copyright (c) 2012-2014 Kaarle Ritvanen
# See LICENSE file for license details
if [ $(basename $0) = run-server.sh ]; then
export LUA_PATH="./?.lua;./?/init.lua;;"
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 --close-on-exec2 \
--plugin /usr/lib/uwsgi/lua_plugin.so --lua server.lua \
--remap-modifier 6:0 \
--static-map /browser=web --static-index client.html \
$OPTIONS
|