aboutsummaryrefslogtreecommitdiff
path: root/nginx/conf.d/default.conf
blob: c33aaf5909249d402b2dce9d16655c1d903eff69 (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
40
41
42
43
server {
    listen          80;
    server_name     localhost;
    root            /usr/share/webapps/cgit;

    location / {
        try_files $uri @cgit;
    }

    location ~ /.+/(info/refs|git-upload-pack) {
        include             fastcgi_params;
        fastcgi_param       SCRIPT_FILENAME     /usr/libexec/git-core/git-http-backend;
        fastcgi_param       PATH_INFO           $uri;
        fastcgi_param       GIT_HTTP_EXPORT_ALL 1;
        fastcgi_param       GIT_PROJECT_ROOT    /srv/git;
	    fastcgi_param 	    GIT_CONFIG_COUNT 1;
	    fastcgi_param 	    GIT_CONFIG_KEY_0 safe.directory;
	    fastcgi_param 	    GIT_CONFIG_VALUE_0 *;
        fastcgi_param       HOME                /srv/git;
        fastcgi_pass        unix:/var/run/fcgiwrap.sock;
    }

    location @cgit {
        include             /etc/nginx/fastcgi_params;
        fastcgi_param       SCRIPT_FILENAME $document_root/cgit.cgi;
        fastcgi_param       PATH_INFO       $uri;
        fastcgi_param       QUERY_STRING    $args;
        fastcgi_param       HTTP_HOST       $server_name;
        fastcgi_pass        unix:/var/run/fcgiwrap.sock;
    }

    error_page  404         /404.html;
    error_page  401         /401.html;

    error_page  500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    location ~ /\.ht {
        deny  all;
    }
}