aboutsummaryrefslogtreecommitdiff
path: root/tests/config-example/narchttpd.toml
blob: a5876c6413ae17440342ec2bc10dbc6ff6d317ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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