blob: d114ab82baa272fe145000cfb931f9796b9d9af9 (
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
24
25
|
server {
listen 443 ssl;
server_name git.localhost git.c9.core git.core.privat-network.net;
root /srv/www/gitweb;
location /static/ {
# static files (png/css) served from /usr/share/gitweb/static
root /usr/share/gitweb ;
expires 30d;
}
location / {
index gitweb.cgi
fastcgi_param GITWEB_CONFIG /etc/gitweb.conf;
fastcgi_param DOCUMENT_ROOT /srv/www/gitweb/;
fastcgi_param SCRIPT_NAME /gitweb.cgi$fastcgi_path_info;
fastcgi_split_path_info ^()(/?.+)$;
include fastcgi_params;
fastcgi_pass unix:/var/run/fcgiwrap.sock;
}
}
|