I use vagrant (box with Ubuntu). I have Elasticsearch installed on it. It available at
localhost:9200
in my Ubuntu. Marvel available at
http://localhost:9200/_plugin/marvel/
How can I enter Marvel on my host? I usually use the following code to create virtual host for my sites:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName some.192.168.56.56.xip.io
DocumentRoot /var/www/some
<Directory /var/www/some>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/some-192.168.56.56.xip.io-error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/some-192.168.56.56.xip.io-access.log combined
</VirtualHost>