summaryrefslogtreecommitdiffstats
path: root/config.toml
diff options
context:
space:
mode:
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml10
1 files changed, 7 insertions, 3 deletions
diff --git a/config.toml b/config.toml
index 555502f..e91e94f 100644
--- a/config.toml
+++ b/config.toml
@@ -3,12 +3,16 @@ address = "127.0.0.1:8080"
[[services]]
name = "tobyvin.dev"
-http = { url = "https://tobyvin.dev" }
+kind = "http"
+url = "https://tobyvin.dev"
[[services]]
name = "test_cmd"
-exec = { command = "stat", args = ["/tmp/test_file"] }
+kind = "exec"
+command = "stat"
+args = ["/tmp/test_file"]
[[services]]
name = "dns"
-tcp = { address = "10.42.0.1:53" }
+kind = "tcp"
+address = "10.42.0.1:53"