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

server notls {
	bind 0.0.0.0 8888
	tls no
}

load ./clog.so init

workers 4

# 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
	}
}