我是靠谱客的博主 明亮篮球,最近开发中收集的这篇文章主要介绍nginx直接打印输出_怎么用nginx输出helloworld,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

展开全部

nginx模块32313133353236313431303231363533e4b893e5b19e31333363366237的处理流程:

a.客户端发送http请求道nginx服务器

b.nginx基于配置文件中的位置选择一个合适的处理模块

c.负载均衡模块选择一台后端服务器(反向代理情况下)

d.处理模块进行处理并把输出缓冲放到第一个过滤模块上

e.第一个过滤模块处理后输出给第二个过滤模块

f.然后第二个过滤模块又到第三个过滤模块

g.第N个过滤模块。。。

h.发处理结果发给客户端

2.nginx模块编写

a、创建模块文件夹

mkdir -p /opt/nginx_hello_world

cd /op/nginx_hello_word

b、创建模块配置文件

vi /opt/nginx_hello_word/config

写入如下内容:

ngx_addon_name=ngx_http_hello_world_module

HTTP_MODULES="$HTTP_MODULES ngx_http_hello_world_module"

NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_hello_world_module.c"

CORE_LIBS="$CORE_LIBS -lpcre"

c、创建模块主文件

vi /opt/nginx_hello_world/ngx_http_hello_world_module.c

写入如下内容:

#include

#include

#include

static char *ngx_http_hello_world(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);

/* Commands */

static ngx_command_t ngx_http_hello_world_commands[] = {

{ ngx_string("hello_world"),

NGX_HTTP_LOC_CONF|NGX_CONF_NOARGS,

ngx_http_hello_world,

0,

0,

NULL },

ngx_null_command

};

static u_char ngx_hello_world[] = "hello world";

static ngx_http_module_t ngx_http_hello_world_module_ctx = {

NULL, /* preconfiguration */

NULL, /* postconfiguration */

NULL, /* create main configuration */

NULL, /* init main configuration */

NULL, /* create server configuration */

NULL, /* merge server configuration */

NULL, /* create location configuration */

NULL /* merge location configuration */

};

/* hook */

ngx_module_t ngx_http_hello_world_module = {

NGX_MODULE_V1,

&ngx_http_hello_world_module_ctx, /* module context */

ngx_http_hello_world_commands, /* module directives */

NGX_HTTP_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

};

static ngx_int_t

ngx_http_hello_world_handler(ngx_http_request_t *r)

{

ngx_int_t rc;

ngx_buf_t *b;

ngx_chain_t out;

/* Http Output Buffer */

r->headers_out.content_type.len = sizeof("text/plain") - 1;

r->headers_out.content_type.data = (u_char *) "text/plain";

b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));

out.buf = b;

out.next = NULL;

b->pos = ngx_hello_world;

b->last = ngx_hello_world + sizeof(ngx_hello_world);

b->memory = 1;

b->last_buf = 1;

r->headers_out.status = NGX_HTTP_OK;

r->headers_out.content_length_n = sizeof(ngx_hello_world);

ngx_http_send_header(r);

return ngx_http_output_filter(r, &out);

}

static char *

ngx_http_hello_world(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)

{

ngx_http_core_loc_conf_t *clcf ;

/* register hanlder */

clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module);

clcf->handler = ngx_http_hello_world_handler;

return NGX_CONF_OK;

}

d、下载nginx源码包,我下载的是nginx-1.0.13.tar.gz

这里注意在编译helloworld模块前首先确认,nginx是否可以独立编译成功,是否安装了所需的所有模块

与helloworld模块一起编译nginx:

./configure --prefix=/usr/local/nginx --add-module=/opt/nginx_hello_world/

make

make install

e、配置nginx.conf

location= /hello {

hello_world;

}

f、启动nginx,访问http://localhost/hello ,可以看到编写的helloworld模块输出的文字。

3.hello world模块分析

a.ngx_command_t函数用于定义包含模块指令的静态数组ngx_http_hello_world_commands

static ngx_command_t ngx_http_hello_world_commands[] = {

{ ngx_string("hello_world"), //设置指令名称字符串,注意不能包含空格,数据类型ngx_str_t之后会详细讲解。

NGX_HTTP_LOC_CONF|NGX_CONF_NOARGS, //配置指令的合法位置,这里表示:location部分合法,并且指令没有参数。

ngx_http_hello_world,//回调函数,三个参数(ngx_conf_t *cf,ngx_command_t *cmd, void *conf)

0,//后面的参数有待发掘,我还没有用到

0,

NULL },

ngx_null_command

};

b.static u_char ngx_hello_world[] ="hello world" 则是输出到屏幕的字符串。

c.ngx_http_module_t用来定义结构体ngx_http_hello_world_module_ctx:

static ngx_http_module_t ngx_http_hello_world_module_ctx = {

NULL, /* 读入配置前调用*/

NULL, /* 读入配置后调用*/

NULL, /* 创建全局部分配置时调用 */

NULL, /* 初始化全局部分的配置时调用*/

NULL, /* 创建虚拟主机部分的配置时调用*/

NULL, /* 与全局部分配置合并时调用 */

NULL, /* 创建位置部分的配置时调用 */

NULL /* 与主机部分配置合并时调用*/

};

d.ngx_module_t定义结构体ngx_http_hello_world_module

ngx_module_t ngx_http_hello_world_module = {

NGX_MODULE_V1,

&ngx_http_hello_world_module_ctx, /* module context */

ngx_http_hello_world_commands, /* module directives */

NGX_HTTP_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

};

他包含有模块的主要内容和指令的执行部分,下一节会详细讲解。

e.处理函数,ngx_http_hello_world_handler,也是hello world 模块的核心部分。

static ngx_int_t

ngx_http_hello_world_handler(ngx_http_request_t *r)//ngx_http_request_t *r 可以访问到客户端的头部和不久要发送的回复头部

{

ngx_int_t rc;

ngx_buf_t *b;

ngx_chain_t out;

/* Http Output Buffer */

r->headers_out.content_type.len = sizeof("text/plain") - 1;

r->headers_out.content_type.data = (u_char *) "text/plain";

b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));

out.buf = b;

out.next = NULL;

b->pos = ngx_hello_world;

b->last = ngx_hello_world + sizeof(ngx_hello_world);

b->memory = 1;

b->last_buf = 1;

r->headers_out.status = NGX_HTTP_OK;

r->headers_out.content_length_n = sizeof(ngx_hello_world);

ngx_http_send_header(r);

return ngx_http_output_filter(r, &out);

}

本回答由提问者推荐

已赞过

已踩过<

你对这个回答的评价是?

评论

收起

最后

以上就是明亮篮球为你收集整理的nginx直接打印输出_怎么用nginx输出helloworld的全部内容,希望文章能够帮你解决nginx直接打印输出_怎么用nginx输出helloworld所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部