28 lines
940 B
C
28 lines
940 B
C
|
|
#include <ngx_config.h>
|
||
|
|
#include <ngx_core.h>
|
||
|
|
|
||
|
|
static ngx_command_t ngx_muninn_commands[] = {};
|
||
|
|
|
||
|
|
static ngx_core_module_t ngx_muninn_module_ctx = {
|
||
|
|
ngx_string("muninn"),
|
||
|
|
NULL, // create conf
|
||
|
|
NULL // init conf
|
||
|
|
};
|
||
|
|
|
||
|
|
ngx_module_t ngx_muninn_core_module = {
|
||
|
|
NGX_MODULE_V1,
|
||
|
|
&ngx_muninn_module_ctx, /* module context */
|
||
|
|
ngx_muninn_commands, /* module directives */
|
||
|
|
NGX_CORE_MODULE, /* module type */
|
||
|
|
NULL, /* init master */
|
||
|
|
NULL, /* init module */
|
||
|
|
NULL, /* init process */
|
||
|
|
NULL, /* init thread */
|
||
|
|
NULL, /* exit thread */
|
||
|
|
NULL, /* exit process */
|
||
|
|
NULL, /* exit master */
|
||
|
|
NGX_MODULE_V1_PADDING
|
||
|
|
};
|
||
|
|
|
||
|
|
|