aboutsummaryrefslogtreecommitdiff
path: root/serve.sh
diff options
context:
space:
mode:
authorofshellohicy <ofshellohicy@gmail.com>2014-09-10 11:42:21 +0800
committerofshellohicy <ofshellohicy@gmail.com>2014-09-10 11:42:21 +0800
commitbbc403b4534d4e93b446959791466c9d55239afc (patch)
tree94a706f230537f3a2d30cede8ff6e96b254fc0bb /serve.sh
parentupdate layout tmpl (diff)
downloadstackbin-bbc403b4534d4e93b446959791466c9d55239afc.tar.gz
stackbin-bbc403b4534d4e93b446959791466c9d55239afc.tar.bz2
stackbin-bbc403b4534d4e93b446959791466c9d55239afc.zip
misc updates
Diffstat (limited to 'serve.sh')
-rwxr-xr-xserve.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/serve.sh b/serve.sh
new file mode 100755
index 0000000..fbc0f55
--- /dev/null
+++ b/serve.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+gunicorn -D -w8 --bind unix:/tmp/flask-pastebin.sock pastebin:app -p var/app.pid --access-logfile var/out.log --error-logfile var/error.log
bgstack15