diff --git a/src/ngx_http_lua_kong_common.h b/src/ngx_http_lua_kong_common.h index f3058165..525f1b84 100644 --- a/src/ngx_http_lua_kong_common.h +++ b/src/ngx_http_lua_kong_common.h @@ -52,4 +52,7 @@ ngx_http_lua_kong_ctx_t *ngx_http_lua_kong_get_module_ctx( char *ngx_http_lua_kong_error_log_init( ngx_conf_t *cf); +ngx_int_t +ngx_http_lua_kong_add_vars(ngx_conf_t *cf); + #endif /* _NGX_HTTP_LUA_KONG_COMMON_H_INCLUDED_ */ diff --git a/src/ngx_http_lua_kong_module.c b/src/ngx_http_lua_kong_module.c index 81c698d8..eae8c723 100644 --- a/src/ngx_http_lua_kong_module.c +++ b/src/ngx_http_lua_kong_module.c @@ -24,7 +24,7 @@ static char* ngx_http_lua_kong_merge_loc_conf(ngx_conf_t *cf, void *parent, void static ngx_http_module_t ngx_http_lua_kong_module_ctx = { - NULL, /* preconfiguration */ + ngx_http_lua_kong_add_vars, /* preconfiguration */ ngx_http_lua_kong_init, /* postconfiguration */ NULL, /* create main configuration */