Web display not work

Hi @trasla,

This line:

tcp        0      0 127.0.0.1:3000          0.0.0.0:*               LISTEN      5581/ruby 

Makes me think the server is binding to 127.0.0.1 meaning you can only connect to it from within the same host. If you want to bind to other network interfaces (e.g. to access from outside a VM for example), pass the -b command, for example:

bundle exec rails server -b 0.0.0.0

If using running from a Git clone. Or

./dradis-webapp -b 0.0.0.0

If using the packages.

HTH,
Daniel