rtfd/docs/public/gitweb/index.rst
Marc Beninca 57d19de7f3 gitweb
2019-09-08 21:08:46 +02:00

27 lines
382 B
ReStructuredText

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;
}