diff options
author | Vladimir Homutov <vl@nginx.com> | 2019-04-09 11:40:20 +0300 |
---|---|---|
committer | Vladimir Homutov <vl@nginx.com> | 2019-04-09 11:40:20 +0300 |
commit | 2eb2a93d8a3ad17eb25b2220ffe1f54d09b3fc4c (patch) | |
tree | 1f21ca667c2b4b28b8cafa5a3856054994586c23 /src | |
parent | 68b147535a5836506be2514cdf1f0ba852f8424b (diff) | |
download | nginx-2eb2a93d8a3ad17eb25b2220ffe1f54d09b3fc4c.tar.gz nginx-2eb2a93d8a3ad17eb25b2220ffe1f54d09b3fc4c.zip |
Core: enabled "include" in any context (ticket #1615).
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ngx_conf_file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_conf_file.h b/src/core/ngx_conf_file.h index 9cd580643..ed2d2ba9d 100644 --- a/src/core/ngx_conf_file.h +++ b/src/core/ngx_conf_file.h @@ -49,7 +49,7 @@ #define NGX_DIRECT_CONF 0x00010000 #define NGX_MAIN_CONF 0x01000000 -#define NGX_ANY_CONF 0x1F000000 +#define NGX_ANY_CONF 0xFF000000 |