use "\" to escape "default", "include", and "hostnames" values instead of "!"

This commit is contained in:
Igor Sysoev 2010-11-25 15:36:24 +00:00
parent 04e145d2da
commit 07335d89df

View File

@ -434,7 +434,7 @@ found:
return NGX_CONF_OK;
}
if (value[0].len && value[0].data[0] == '!') {
if (value[0].len && value[0].data[0] == '\\') {
value[0].len--;
value[0].data++;
}