nginx-hello-world-module icon indicating copy to clipboard operation
nginx-hello-world-module copied to clipboard

using another build tool

Open PhilipDeegan opened this issue 5 years ago • 0 comments

the nginx build generates this on the fly and inserts it into the .so

might be useful to have it as an optional thing, or mention

extern ngx_module_t  ngx_http_hello_world_module;

ngx_module_t *ngx_modules[] = {
    &ngx_http_hello_world_module,
    NULL
};

char *ngx_module_names[] = {
    "ngx_http_hello_world_module",
    NULL
};

char *ngx_module_order[] = {
    NULL
};

PhilipDeegan avatar Jul 15 '19 12:07 PhilipDeegan