Merge pull request #22 from C00kie-/master

allow to configure binding interface
pull/519/head
Alexandre Dulaunoy 2020-07-06 17:34:06 +02:00 committed by GitHub
commit 1f8650a648
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -39,6 +39,8 @@ sender_user =
[Flask] [Flask]
#Proxying requests to the app #Proxying requests to the app
baseUrl = / baseUrl = /
#Host to bind to
host = 0.0.0.0
#Flask server port #Flask server port
port = 7000 port = 7000
#Number of logs to display in the dashboard #Number of logs to display in the dashboard

View File

@ -49,6 +49,7 @@ Flask_dir = os.environ['AIL_FLASK']
# CONFIG # # CONFIG #
config_loader = ConfigLoader.ConfigLoader() config_loader = ConfigLoader.ConfigLoader()
baseUrl = config_loader.get_config_str("Flask", "baseurl") baseUrl = config_loader.get_config_str("Flask", "baseurl")
host = config_loader.get_config_str("Flask", "host")
baseUrl = baseUrl.replace('/', '') baseUrl = baseUrl.replace('/', '')
if baseUrl != '': if baseUrl != '':
baseUrl = '/'+baseUrl baseUrl = '/'+baseUrl
@ -253,4 +254,4 @@ r_serv_db.sadd('list_export_tags', 'infoleak:submission="manual"')
# ============ MAIN ============ # ============ MAIN ============
if __name__ == "__main__": if __name__ == "__main__":
app.run(host='0.0.0.0', port=FLASK_PORT, threaded=True, ssl_context=ssl_context) app.run(host=host, port=FLASK_PORT, threaded=True, ssl_context=ssl_context)