httpns/server/run.sh
2017-10-09 10:54:43 +02:00

8 lines
136 B
Bash
Executable file

#!/bin/bash
ip="0.0.0.0"
port="9229"
workers=$((`getconf _NPROCESSORS_ONLN` * 4))
gunicorn -w $workers -b $ip:$port -n "HTTPNS" main