http_ports = [1337]; https_ports = []; domain(["domain.test", "alternate-domain.test"], serve_static(#{ root: "./domain.test", })); domain("sub.domain.test", serve_static(#{ root: "./sub.domain.test", })); domain("dynamic.test", proxy_child(#{ command: |port| "python -m http.server " + port, in_dir: "./dynamic.test", })); domain("function.test", |request| #{ status: 200, body: "OK", });