diff options
Diffstat (limited to 'src/http/ngx_http_script.c')
-rw-r--r-- | src/http/ngx_http_script.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http/ngx_http_script.c b/src/http/ngx_http_script.c index 77ac9a629..a8f193a32 100644 --- a/src/http/ngx_http_script.c +++ b/src/http/ngx_http_script.c @@ -1505,6 +1505,9 @@ ngx_http_script_file_code(ngx_http_script_engine_t *e) of.test_only = 1; of.errors = clcf->open_file_cache_errors; of.events = clcf->open_file_cache_events; +#if (NGX_HAVE_OPENAT) + of.disable_symlinks = clcf->disable_symlinks; +#endif if (ngx_open_cached_file(clcf->open_file_cache, &path, &of, r->pool) != NGX_OK) |