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

server notls {
	bind 0.0.0.0 8888
	tls no
}

load ./clog.so init

workers 4

privsep worker {
	runas        kore
	root        /var/chroot/kore
}

# seccomp_tracing no
seccomp_tracing yes

domain * {
	attach notls

	filemap /static/ assets/static

	route / {
		handler posts
	}

	route /posts {
		handler posts
	}

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

	# route /test_json render_posts_json

}