|
diff --git a/cgit.c b/cgit.c index 916feb4..f4dd6ef 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -743,28 +743,29 @@ int main(int argc, const char **argv) |
743 | |
743 | |
744 | prepare_context(&ctx); |
744 | prepare_context(&ctx); |
745 | cgit_repolist.length = 0; |
745 | cgit_repolist.length = 0; |
746 | cgit_repolist.count = 0; |
746 | cgit_repolist.count = 0; |
747 | cgit_repolist.repos = NULL; |
747 | cgit_repolist.repos = NULL; |
748 | |
748 | |
749 | cgit_parse_args(argc, argv); |
749 | cgit_parse_args(argc, argv); |
750 | parse_configfile(expand_macros(ctx.env.cgit_config), config_cb); |
750 | parse_configfile(expand_macros(ctx.env.cgit_config), config_cb); |
751 | ctx.repo = NULL; |
751 | ctx.repo = NULL; |
752 | http_parse_querystring(ctx.qry.raw, querystring_cb); |
752 | http_parse_querystring(ctx.qry.raw, querystring_cb); |
753 | |
753 | |
754 | /* If virtual-root isn't specified in cgitrc, lets pretend |
754 | /* If virtual-root isn't specified in cgitrc, lets pretend |
755 | * that virtual-root equals SCRIPT_NAME. |
755 | * that virtual-root equals SCRIPT_NAME, minus any possibly |
| |
756 | * trailing slashes. |
756 | */ |
757 | */ |
757 | if (!ctx.cfg.virtual_root) |
758 | if (!ctx.cfg.virtual_root) |
758 | ctx.cfg.virtual_root = ctx.cfg.script_name; |
759 | ctx.cfg.virtual_root = trim_end(ctx.cfg.script_name, '/'); |
759 | |
760 | |
760 | /* If no url parameter is specified on the querystring, lets |
761 | /* If no url parameter is specified on the querystring, lets |
761 | * use PATH_INFO as url. This allows cgit to work with virtual |
762 | * use PATH_INFO as url. This allows cgit to work with virtual |
762 | * urls without the need for rewriterules in the webserver (as |
763 | * urls without the need for rewriterules in the webserver (as |
763 | * long as PATH_INFO is included in the cache lookup key). |
764 | * long as PATH_INFO is included in the cache lookup key). |
764 | */ |
765 | */ |
765 | path = ctx.env.path_info; |
766 | path = ctx.env.path_info; |
766 | if (!ctx.qry.url && path) { |
767 | if (!ctx.qry.url && path) { |
767 | if (path[0] == '/') |
768 | if (path[0] == '/') |
768 | path++; |
769 | path++; |
769 | ctx.qry.url = xstrdup(path); |
770 | ctx.qry.url = xstrdup(path); |
770 | if (ctx.qry.raw) { |
771 | if (ctx.qry.raw) { |
|