aboutsummaryrefslogtreecommitdiff
path: root/tests/config-example/narchttpd.toml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/config-example/narchttpd.toml')
-rw-r--r--tests/config-example/narchttpd.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/config-example/narchttpd.toml b/tests/config-example/narchttpd.toml
new file mode 100644
index 0000000..a5876c6
--- /dev/null
+++ b/tests/config-example/narchttpd.toml
@@ -0,0 +1,20 @@
+http_ports = [1337]
+https_ports = []
+
+["domain.test"]
+mode = "static"
+root = "./domain.test"
+
+["alternate-domain.test"]
+mode = "static"
+root = "./domain.test"
+
+["sub.domain.test"]
+mode = "static"
+root = "./sub.domain.test"
+
+["dynamic.test"]
+mode = "proxy-child"
+command = "python -m http.server 6970"
+in_dir = "./dynamic.test"
+port = 6970