Releases: Taymindis/nginx-link-function
add new function ngx_link_func_get_uri
new function to getting URI
sample code response
ngx_link_func_str_t uri;
if (ngx_link_func_get_uri(ctx, &uri) == 0) {
ngx_link_func_write_resp(
ctx,
200,
"200 OK",
"text/plain",
uri.data,
uri.len
);
} else {
ngx_link_func_write_resp(
ctx,
404,
"404 NOT FOUND",
"text/plain",
NULL,
0
);
}
Fixed And remove validity check error when start nginx in FreeBSD env
3.2.3 update for FreeBSD remove validity Check warning when starting nginx
Fixed dlsym issue when running on FreeBSD
This is to fixed FreeBSD Undefined symbol "_nss_cache_cycle_prevention_function".
Fix Compile issue
3.2.1 Update Readme
New release for 3.2.0 with added on feature
-
add on server properties feature
-
nginx config test for application library function check before started, include downloaded application on cloud support
-
update init and exit function , move to cycle phase at least create an init_cycle and exit_cycle function block with cycle argument, header update
New release for minor fixed
Bug Fixed Zero Downtime
Sub Request Sync Async
nginx-link-function
update condition for content handling
nginx-link-function
Microservice handler
nginx-link-function
refactoring nginx-c-function to nginx-link-function
critical change from ngx_http_c_func_init to ngx_link_func_init
critical change from ngx_http_c_func_exit to ngx_link_func_exit
handle heavy post payload event trigger, avoid epoll rhup event
new release to handle heavy post payload
-- Bug fixed for handling heavy post payload request