This commit is contained in:
Marc Beninca 2019-09-08 21:08:46 +02:00
parent 40652395f5
commit 57d19de7f3
2 changed files with 28 additions and 0 deletions

View file

@ -20,6 +20,7 @@ RTFD
public/firefox/index public/firefox/index
public/git/index public/git/index
public/git-bash/index public/git-bash/index
public/gitweb/index
public/gnome/index public/gnome/index
public/gnupg/index public/gnupg/index
public/gource/index public/gource/index

View file

@ -0,0 +1,27 @@
gitweb
======
Configure
---------
.. todo:: /etc/gitweb.conf alike
Expose
------
.. todo:: link to fcgi common configuration
NginX
^^^^^
::
location /static/ {
root /usr/share/gitweb;
}
location / {
include fcgi.conf;
fastcgi_param SCRIPT_FILENAME /usr/share/gitweb/gitweb.cgi;
fastcgi_param GITWEB_CONFIG /etc/gitweb.conf;
fastcgi_pass unix:/run/fcgiwrap.socket;
}