aboutsummaryrefslogtreecommitdiff
path: root/conf/clog.conf
blob: a32d30bb157345bc64bcdb0080c36e26b769c107 (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
# 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

domain * {
	attach notls

	filemap /static/ assets/static

	route / {
		handler posts
	}

	route /posts {
		handler posts
	}

	route ^/posts/[a-z0-9\-]+$ {
		handler post
	}

	route /toy {
	handler toy
}

	route ^/.*$ {
		handler redirect
	}

}