from wqflask import app # Start the webserver with ./bin/genenetwork2 # # 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/ #import logging #logging.basicConfig(filename="/tmp/flask_gn_log", level=logging.INFO) # #_log = logging.getLogger("search") #_ch = logging.StreamHandler() #_log.addHandler(_ch) print app.config import logging file_handler = logging.FileHandler(app.config['LOGFILE']) file_handler.setLevel(logging.DEBUG) app.logger.addHandler(file_handler) from utility.tools import WEBSERVER_MODE app.run(host='0.0.0.0', port=app.config['SERVER_PORT'], debug=(WEBSERVER_MODE=='DEBUG'), use_debugger=(WEBSERVER_MODE=='DEBUG'), threaded=(WEBSERVER_MODE=='PROD'), use_reloader=True)