blob: 313776ebf890180c5784261efdd3ee1bcb85be84 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# managed by Ansible
server "{{ cgit__domain_name }}" {
listen on * port {{ cgit__listen_port }}
root "/htdocs/stagit"
location match "style.css" {
request rewrite "/style.css"
}
location match "logo.png" {
request rewrite "/logo.png"
}
location match "favicon.png" {
request rewrite "/logo.png"
}
}
|