从零手写实现 nginx-21-modules 模块

实现一个Nginx模块涉及多个步骤,包括模块初始化、配置解析、日志记录等。以下是一个简单的Nginx模块骨架,它可以作为开始手写模块的起点。




#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
 
// 模块的 context 结构体
typedef struct {
    ngx_str_t test_str;
} ngx_http_mytest_conf_t;
 
// 解析配置项的回调函数
static char *ngx_http_mytest(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
    ngx_http_core_loc_conf_t *clcf;
    clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module);
    clcf->handler = ngx_http_mytest_handler;
 
    // 获取配置项参数
    ngx_str_t *value = cf->args->elts;
    ngx_http_mytest_conf_t *lcf = conf;
    lcf->test_str = value[1];
 
    return NGX_CONF_OK;
}
 
// 模块处理请求的回调函数
static ngx_int_t ngx_http_mytest_handler(ngx_http_request_t *r) {
    if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) {
        return NGX_HTTP_NOT_ALLOWED;
    }
 
    ngx_int_t rc = ngx_http_discard_request_body(r);
    if (rc != NGX_OK) {
        return rc;
    }
 
    // 设置响应头
    ngx_str_t *test_str = ...; // 从配置中获取字符串
    ngx_table_elt_t *h = ngx_list_push(&r->headers_out.headers);
    if (h == NULL) {
        return NGX_HTTP_INTERNAL_SERVER_ERROR;
    }
 
    h->key = ngx_http_mytest_header_name;
    h->value = *test_str;
    h->hash = 1; // 计算hash值
 
    // 发送响应
    ngx_int_t status = NGX_HTTP_OK;
    ngx_str_t response = ngx_http_mytest_response;
    ngx_buf_t *b = ngx_create_temp_buf(r.pool, response.len);
    if (b == NULL) {
        return NGX_HTTP_INTERNAL_SERVER_ERROR;
    }
 
    ngx_memcpy(b->pos, response.data, response.len);
    b->last = b->pos + response.len;
    b->memory = 1;
    b->last_buf = 1;
 
    r->headers_out.status = status;
    r->headers_out.content_length_n = response.len;
    r->headers_out.content_type_len = sizeof("text/plain") - 1;
    ngx_str_set(&r->headers_out.content_type, "text/plain");
 
    return ngx_http_send_header(r) == NGX_ERROR
        ? NGX_HTTP_INTERNAL_SERVER_ERROR
        : ngx_http_output_filter(r, b);
}
 
// 模块的定义
ngx_module_t ngx_http_mytest_module = {
    ..., // 模块的各种方法
    ngx_http_mytest_create_conf, // 创建配置结构体的方法
    ngx_http_mytest_init_conf // 初始化配置结构体的方法
};
 
// 配置指令结构体
static ngx_command_t ngx_http_

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日