Skip to content

Releases: Taymindis/nginx-link-function

add new function ngx_link_func_get_uri

13 Oct 02:39
Compare
Choose a tag to compare

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

04 Jun 00:35
Compare
Choose a tag to compare
3.2.3

update for FreeBSD remove validity Check warning when starting nginx

Fixed dlsym issue when running on FreeBSD

31 May 16:15
Compare
Choose a tag to compare

This is to fixed FreeBSD Undefined symbol "_nss_cache_cycle_prevention_function".

Fix Compile issue

23 Feb 02:20
Compare
Choose a tag to compare
3.2.1

Update Readme

New release for 3.2.0 with added on feature

03 Jan 08:12
Compare
Choose a tag to compare
  • 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

15 Dec 09:55
Compare
Choose a tag to compare

Bug Fixed Zero Downtime
Sub Request Sync Async

nginx-link-function

17 Nov 11:26
Compare
Choose a tag to compare

update condition for content handling

nginx-link-function

17 Nov 07:11
Compare
Choose a tag to compare

Microservice handler

nginx-link-function

16 Nov 03:13
Compare
Choose a tag to compare

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

13 Nov 13:11
Compare
Choose a tag to compare

-- Bug fixed for handling heavy post payload request