Changes between Version 17 and Version 18 of TipAndDoc/scm/git
- Timestamp:
- Apr 17, 2013 9:42:43 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TipAndDoc/scm/git
v17 v18 187 187 * [https://gist.github.com/beheadedmyway/1549832 Gitweb on Centos behind Nginx with init script.] 188 188 * [http://rouge.eu.org/blog/web/git-web-nginx/ Using git-web with nginx | Jeff's musings] 189 190 * 以下の様に設定するのがすっきりすると思われる 191 {{{ 192 location ~ /gitweb/(.*) { 193 fastcgi_pass unix:/var/run/fcgiwrap.socket; 194 fastcgi_param SCRIPT_FILENAME /usr/share/gitweb/gitweb.cgi; 195 include fastcgi_params; 196 fastcgi_param PATH_INFO $1; 197 } 198 }}} 199 * {{{/gitweb/(.*)}}}を{{{/gitweb(/.*)}}}とすると、リンクが正常に生成されないので注意