github.com/dkerwin/nomad@v0.3.3-0.20160525181927-74554135514b/demo/vagrant/client1.hcl (about) 1 # Increase log verbosity 2 log_level = "DEBUG" 3 4 # Setup data dir 5 data_dir = "/tmp/client1" 6 7 enable_debug = true 8 9 # Enable the client 10 client { 11 enabled = true 12 13 # For demo assume we are talking to server1. For production, 14 # this should be like "nomad.service.consul:4647" and a system 15 # like Consul used for service discovery. 16 servers = ["127.0.0.1:4647"] 17 node_class = "foo" 18 options { 19 "driver.raw_exec.enable" = "1" 20 } 21 } 22 23 # Modify our port to avoid a collision with server1 24 ports { 25 http = 5656 26 }