diff options
author | Sam Ockman | 2012-05-24 02:18:20 -0400 |
---|---|---|
committer | Sam Ockman | 2012-05-24 02:18:20 -0400 |
commit | 527bb0459cf488e5021696e326dc10d28ecdd74c (patch) | |
tree | 097e013d6a876fe0a6e178ff6defa813faa4af93 /wqflask/runserver.py | |
parent | aa915612d2ff98f1e31d2ec38e8054382ef75dd9 (diff) | |
download | genenetwork2-527bb0459cf488e5021696e326dc10d28ecdd74c.tar.gz |
Trying to get stuff working under new structure
Diffstat (limited to 'wqflask/runserver.py')
-rw-r--r-- | wqflask/runserver.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/wqflask/runserver.py b/wqflask/runserver.py new file mode 100644 index 00000000..bf73ed37 --- /dev/null +++ b/wqflask/runserver.py @@ -0,0 +1,15 @@ +from wqflask import app + +# Please note, running with host set externally below combined with debug mode +# is a big security no-no +# Unless you have a firewall setup +# +# Something like /sbin/iptables -A INPUT -p tcp -i eth0 -s ! 71.236.239.43 --dport 5000 -j DROP +# should do the trick +# +# You'll probably have to firewall the main port and the +# +# For more info see: http://www.cyberciti.biz/faq/iptables-block-port/ + + +app.run(host='0.0.0.0') |