http_ports = [1337]; https_ports = []; let sample = serve_static(#{ root: "./domain.test", }); domains["domain.test"] = sample; domains["alternate-domain.test"] = sample; domains["sub.domain.test"] = serve_static(#{ root: "./sub.domain.test", }); domains["dynamic.test"] = proxy_child(#{ command: "python -m http.server 6970", in_dir: "./dynamic.test", port: 6970, });