Neo23x0 / munin

Online hash checker for Virustotal and other services

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bind to 0.0.0.0 or specific IP

gyterpena opened this issue · comments

When run in web mode munin binds to 127.0.0.1, is there a way to bind to 0.0.0.0 or specific IP address/interface?

munin.py -i munin.ini --web -w 10088

https://github.com/Neo23x0/munin/blob/master/munin.py#L1036

Bind it to 0.0.0.0 by simply modifying line 1036:

app.run(host = '0.0.0.0',port=int(args.w))

thx, this works.