blob: e787ec30ee893ac3f808ab85747e7324887ab53a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# clog configuration
server notls {
bind 0.0.0.0 8888
tls no
}
workers 4
privsep worker {
runas clog
root /var/chroot/clog
# skip chroot
}
seccomp_tracing no
validator v_uuid regex ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
# validator v_text function v_example_func
domain * {
attach notls
filemap /static/ assets/static
route / {
handler get_index
methods get
}
route /entries {
handler get_index
methods get
}
route ^/entries/[a-z0-9\-]+$ {
handler get_entry
methods get
}
route ^/entries/[a-z0-9\-]+/edit$ {
handler edit_entry
methods get
}
# toy endpoint
# route /form {
# handler get_entry_form
# methods get
# }
# route /form {
# handler post_entry_form
# methods post
# validate post id v_uuid
# validate post title v_text
# validate post body v_text
# }
route ^/.*$ {
handler redirect
}
}
|