[PATCH] gitweb: remove PATH_INFO from $my_url and $my_uri
From: Giuseppe Bilotta <hidden>
Date: 2016-06-15 22:45:06
This patch (combined with appropriate server configuration) allows usage of the gitweb CGI script as DirectoryIndex for the server root even when the pathinfo feature is enabled. Signed-off-by: Giuseppe Bilotta <redacted> --- gitweb/gitweb.perl | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index ba1f71b..9c8bcab 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl@@ -26,6 +26,10 @@ our $cgi = new CGI; our $version = "++GIT_VERSION++"; our $my_url = $cgi->url(); our $my_uri = $cgi->url(-absolute => 1); +if (my $path_info = $ENV{"PATH_INFO"}) { + $my_url =~ s,$path_info$,,; + $my_uri =~ s,$path_info$,,; +} # core git executable to use # this can just be "git" if your webserver has a sensible PATH
--
1.5.6.3