nginx 編寫一個非常簡單的hello word 模組
技術標籤:軟體使用
本文件為個人部落格文件系統的備份版本、作者:小遊、作者部落格:點選訪問
參考https://blog.csdn.net/xiajun07061225/article/details/9130237
首先我們先編寫模組,編寫模組的時候我們需要新建一個config
檔案這個檔案就是nginx模組的配置檔案
比如我們寫一個簡單的mytest模組,那麼檔案的配置資訊就是下面這樣的。這裡我們需要定義三個變數
config檔案其實是一個可執行的Shell指令碼,如果只想開發一個HTTP模組,需要定義三個變數:
(1)ngx_adon_name。僅在configure執行時使用,一般設定為模組名稱。
(2)HTTP_MODULES。儲存所有的HTTP模組名稱。每個模組間由空格相連。在重新設定這個變數時,不要直接覆蓋,因此要如下設定:"$HTTP_MODULES ngx_http_mytest_module"
(3)NGX_ADDON_SRCS。用於指定新模組的原始碼,多個待編譯的原始碼之間可以用空格相連。
注意,在設定這個變數時可以使用$ngx_addon_dir變數(這個變數是用於我們編譯的時候傳遞的),它等價於configure執行時–add-module=PATH的PATH引數。
ngx_addon_name=ngx_http_mytest_module
HTTP_MODULES= "$HTTP_MODULES ngx_http_mytest_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_mytest_module.c"
然後我們新建一個ngx_http_mytest_module.c
檔案用於自己的程式碼,程式碼內容如下
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
static ngx_int_t ngx_http_mytest_handler (ngx_http_request_t *r);
static char *
ngx_http_mytest(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
//處理配置項
static ngx_command_t ngx_http_mytest_commands[] = {
{
ngx_string("mytest"),
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_CONF_NOARGS,
ngx_http_mytest,
NGX_HTTP_LOC_CONF_OFFSET,
0,
NULL
},
ngx_null_command
};
//模組上下文
static ngx_http_module_t ngx_http_mytest_module_ctx = {
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL
};
//新模組定義
ngx_module_t ngx_http_mytest_module = {
NGX_MODULE_V1,
&ngx_http_mytest_module_ctx,
ngx_http_mytest_commands,
NGX_HTTP_MODULE,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NGX_MODULE_V1_PADDING
};
//配置項對應的回撥函式
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;
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 type = ngx_string("text/plain");
ngx_str_t response = ngx_string("Hello World");
r->headers_out.status = NGX_HTTP_OK;
r->headers_out.content_length_n = response.len;
r->headers_out.content_type = type;
rc = ngx_http_send_header(r);
if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) {
return rc;
}
ngx_buf_t *b;
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->last_buf = 1;
ngx_chain_t out;
out.buf = b;
out.next = NULL;
return ngx_http_output_filter(r, &out);
}
如果我們之前安裝過nginx需要先停止nginx(我不知道要不要刪除nginx安裝的原始碼,我刪掉了)然後我們進行重新編譯安裝nginx
./configure --prefix=/usr/local/nginx(指定安裝部署後的根目錄) --add-module=/home/nginx(新模組存放目錄)
make
sudo make instal
安裝好後我們修改nginx的配置檔案,在裡面加上
location /test {
mytest;
}
最後訪問127.0.0.1/test
然後我們需要過載nginx的配置檔案nginx -s reload
最後測試的效果如下
另外附幾條常用的nginx命令
#配置檔案過載
nginx -s reload
#關閉
nginx -s stop // 快速
nginx -s quit // 完整有序