blob: cf870b1639f5cf23229d135209ff0ab5ace22f0b (
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
68
69
70
71
72
73
74
75
|
# 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 validate_text
domain * {
attach notls
filemap /static/ assets/static
route / {
handler get_index
methods get
}
route /entries {
handler get_index
methods get
}
route ^/search$ {
handler search_entries
methods get
validate qs:get query v_text
}
route ^/entries/search$ {
handler search_entries
methods get
validate qs:get query v_text
}
route ^/entries/[a-z0-9\-]+$ {
handler get_entry
methods get
}
route ^/entries/[a-z0-9\-]+/edit$ {
handler edit_entry
methods get
}
route ^/entries/[a-z0-9\-]+$ {
handler update_entry
methods post
validate post id v_uuid
validate post title v_text
validate post body v_text
}
route ^/.*$ {
handler redirect
}
}
|