blob: c76fdb884c3c42d65de9b9f8dbbabe24645b53d0 (
plain) (
tree)
|
|
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
location / {
include fastcgi_params;
fastcgi_pass unix:/run/fcgiwrap.sock;
fastcgi_param CGIT_CONFIG /etc/cgit/cgitrc;
fastcgi_param SCRIPT_FILENAME /usr/lib/cgit/cgit.cgi;
fastcgi_split_path_info ^(/?)(.+)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
location /cgit/ {
alias /usr/share/cgit/;
}
}
|