diff --git a/docs/index.rst b/docs/index.rst index b2cb6f0..cc12c93 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -20,6 +20,7 @@ RTFD public/firefox/index public/git/index public/git-bash/index + public/gitweb/index public/gnome/index public/gnupg/index public/gource/index diff --git a/docs/public/gitweb/index.rst b/docs/public/gitweb/index.rst new file mode 100644 index 0000000..57d1175 --- /dev/null +++ b/docs/public/gitweb/index.rst @@ -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; + }