job "http-sys" { type = "system" datacenters = ["dc-west"] update { max_parallel = 1 health_check = "task_states" min_healthy_time = "15s" healthy_deadline = "1m" progress_deadline = "2m" auto_revert = true } group "svr" { task "http" { driver = "raw_exec" config { command = "/usr/bin/python" args = [ "-m", "SimpleHTTPServer", "8001" ] } } } }