jsproxy/server/run.sh
2019-03-04 12:47:46 +08:00

9 lines
176 B
Bash
Executable File

NGX_BIN=/usr/local/openresty/nginx/sbin/nginx
CUR_DIR=$(cd `dirname $0` && pwd)
if [ $1 ]; then
PARAM="-s $1"
fi
$NGX_BIN -c $CUR_DIR/nginx.conf -p $CUR_DIR/nginx $PARAM