Fix the regex in the example
Thanks Hiltjo!
This commit is contained in:
parent
7b7f166dd5
commit
b40b11a40e
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ static struct {
|
||||||
} vhost[] = {
|
} vhost[] = {
|
||||||
/* canonical host host regex directory prefix */
|
/* canonical host host regex directory prefix */
|
||||||
{ "example.org", "^(www\\.)?example\\.org$", "/example.org", NULL },
|
{ "example.org", "^(www\\.)?example\\.org$", "/example.org", NULL },
|
||||||
{ "example.org", "old\\.example\\.org", "/", "/old" },
|
{ "example.org", "^old\\.example\\.org$", "/", "/old" },
|
||||||
};
|
};
|
||||||
|
|
||||||
/* target prefix mapping */
|
/* target prefix mapping */
|
||||||
|
|
Loading…
Reference in a new issue