mirror of
https://git.zx2c4.com/cgit
synced 2025-07-24 12:45:10 +02:00
Merge branch 'stable'
* stable: Support "/" as virtual-root
This commit is contained in:
commit
6e54bd009c
1 changed files with 4 additions and 2 deletions
6
shared.c
6
shared.c
|
@ -157,9 +157,11 @@ void cgit_global_config_cb(const char *name, const char *value)
|
|||
cgit_logo_link = xstrdup(value);
|
||||
else if (!strcmp(name, "module-link"))
|
||||
cgit_module_link = xstrdup(value);
|
||||
else if (!strcmp(name, "virtual-root"))
|
||||
else if (!strcmp(name, "virtual-root")) {
|
||||
cgit_virtual_root = trim_end(value, '/');
|
||||
else if (!strcmp(name, "nocache"))
|
||||
if (!cgit_virtual_root && (!strcmp(value, "/")))
|
||||
cgit_virtual_root = "";
|
||||
} else if (!strcmp(name, "nocache"))
|
||||
cgit_nocache = atoi(value);
|
||||
else if (!strcmp(name, "snapshots"))
|
||||
cgit_snapshots = cgit_parse_snapshots_mask(value);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue