Skip to content

Instantly share code, notes, and snippets.

@zeddee
Created September 4, 2020 21:20
Show Gist options
  • Save zeddee/d0bfc992320ee9b4ce6b4f64b5e69634 to your computer and use it in GitHub Desktop.
Save zeddee/d0bfc992320ee9b4ce6b4f64b5e69634 to your computer and use it in GitHub Desktop.

When using the official MISP ova, the baseurl is set to https://localhost:8443. This makes using the web interface difficult on any other machine than the VM (which is the default, because the OVA doesn't come with Xwin/Xorg) because every link on the web interface will attempt to redirect you to `https://localhost:8443' instead of the actual URL you're using.

The solution is to modify the baseurl in MISP's config.php file:

sudo -u www-data vim /var/www/MISP/app/Config/config.php

Once in vim, replace all instances of 'https://localhost:8443' with '' (empty string)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment