aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docker/frontend/etc/nginx/conf.d/default.conf
blob: 1fcbf13a1c159f2525ff7f411cc0fafcab4418a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
server {
    listen 80 default_server;
    listen [::]:80 default_server;
    server_name _;

    location / {
        include fastcgi_params;
        fastcgi_pass unix:/run/fcgiwrap.sock;

        fastcgi_param SCRIPT_FILENAME /usr/lib/cgit/cgit.cgi;

        # This looks stupid. Can I substitute any variable for $fastcgi_path_info?
        fastcgi_split_path_info ^(/?)(.+)$;
        fastcgi_param PATH_INFO $fastcgi_path_info;
    }

    location /cgit/ {
        alias /usr/share/cgit/;
    }
}