Skip to content

Instantly share code, notes, and snippets.

@rodriguezsergio
Forked from agoddard/Vagrantfile
Last active December 18, 2015 17:29
Show Gist options
  • Save rodriguezsergio/5819071 to your computer and use it in GitHub Desktop.
Save rodriguezsergio/5819071 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "sandbox"
config.vm.box_url = "http://repos.sensuapp.org/box/sandbox.box"
config.vm.network :forwarded_port, guest: 4567, host: 4567
config.vm.network :forwarded_port, guest: 8080, host: 8080
end
@rodriguezsergio
Copy link
Author

To anyone else that decides to use this. Here is the config file so you can start poking around the web UI.

/etc/sensu/config.json

{
  "rabbitmq": {
    "host": "localhost",
    "port": 5671,
    "ssl": {
      "cert_chain_file": "/etc/sensu/ssl/cert.pem",
      "private_key_file": "/etc/sensu/ssl/key.pem"
    },
    "vhost": "/sensu",
    "user": "sensu",
    "password": "password"
  },
  "redis": {
    "host": "localhost",
    "port": 6379
  },
  "api": {
    "host": "localhost",
    "port": 4567
  },
  "dashboard": {
    "bind": "0.0.0.0",
    "port": 8080,
    "user": "admin",
    "password": "secret"
  }
}

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