blob: 3defb8c830c72ad1a977734a65121802323ff7b0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
types {
include "/usr/share/misc/mime.types"
}
server "maddaat.org" {
listen on * port 80
location "*" {
block return 307 "http://git.maddaat.org"
}
}
server "git.maddaat.org" {
listen on * port 80
location "/cgit.*" {
root "/cgit"
no fastcgi
}
root "/cgi-bin/cgit.cgi"
fastcgi socket "/run/slowcgi.sock"
}
|