Nginx Link Function Versions Save

It is a NGINX module that provides dynamic linking to your application in server context and call the function of your application in location directive

3.2.4

3 years ago

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
        );
    }

3.2.3

3 years ago

3.2.2

3 years ago

This is to fixed FreeBSD Undefined symbol "_nss_cache_cycle_prevention_function".

3.2.1

5 years ago

3.2.0

5 years ago
  • 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

3.1.0

5 years ago

Bug Fixed Zero Downtime Sub Request Sync Async

3.0.2

5 years ago

update condition for content handling

3.0.1

5 years ago

Microservice handler

3.0.0

5 years ago

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

2.0.2

5 years ago

-- Bug fixed for handling heavy post payload request