nginx HTTP module composition
Original link: http://cjhust.blog.163.com/blog/static/17582715720124544047608/
1, data structure
ngx_conf_s
ngx_array_t *args; // command parameters, read from the file and put into this array
ngx_cycle_t *cycle; //points to system parameters
ngx_pool_t *pool; ngx_pool_t *temp_pool;
ngx_log_t *log; /
void //(void ****)cycle->conf_ctx
, which contains the configuration information of all modules ngx_uint_t module_type;
The type of module that handles the current instruction ngx_uint_t cmd_type; //
Process this command Type of command ngx_conf_handler_pt handler; //
Command processing function char Use
handler with the above
acts as a bridge. ngx_http_conf_ctx_t
typedef struct {
备注:HTTP block中的配置结构主要分为3中,main、server{}、location{}。
ngx_http_module_t
备注:HTTP模块中的ctx主要有上面8个函数组成。
ngx_command_s
struct ngx_command_s {
ngx_str_t name;
ngx_uint_t type;
char *(*set)(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
ngx_uint_t conf;
ngx_uint_t offset;
void *post;
};
#define ngx_null_command { ngx_null_string, 0, NULL, 0, 0, NULL }
2、HTTP ctx
2.1 create_main_conf(ngx_conf_t *cf)
Parameters: ngx_conf_t *cf, configuration structure;
Return value: + gx_http The result of _get_module_ main _conf;
Example: static void * ngx_http_barrier_create_conf(ngx_conf_t *cf) { ngx_http_barrier_conf_t *conf; / /A custom structure
conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_barrier_conf_t)); //init by pcalloc
if (conf == NULL) {
return NULL;
} conf->enable = NGX_CONF_UNSET;
return conf; //
Return the custom structure
}
2.2 create_srv_conf(ngx_conf_t *cf)
Parameters: ngx_conf_t *cf, configuration structure;
Return value: void *
;Note: return value can be used as x_http The result of _get_module_ srv_conf;
Example:
static void * ngx_http_barrier_create_conf(ngx_conf_t *cf){ ngx_http_barrier_conf_t *conf; // A customized structure conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_barrier_conf_t)); //init by pcalloc
if (conf == NULL) {N Return null; }
CONF- & GT; enable = ngx_conf_unset;
Return conf; // Return to the custom structure
}}
2.3 create_loc_conf(ngx_conf_t *cf)
Parameters:
ngx_conf_t *cf
, configuration structure;
Return value: void *
;
Note:
The return value can be used asngx_http_conf_get_module_loc_conf and gx_http The result of _get_module_loc_conf;
Example: static void * ngx_http_barrier_create_conf(ngx_conf_t *cf)
{ ngx_http_barrier_conf_t *conf; // A customized structure conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_barrier_conf_t)); //init by pcalloc if (conf == NULL) { return NULL; } conf->enable = NGX_CONF_UNSET; return conf; //Return to custom The structure of } 2.4 preconfiguration(ngx_conf_t *cf ) Parameters: ngx_conf_t *cf, configuration structure; Return value: ngx_int_t ; Remarks: The return value is only used as a judgment whether the operation is correct; Example: static ngx_int_t ngx_http_ssl_add _variables(ngx_conf_t *cf) { ngx_http_variable_t *var, *v; for (v = ngx_http_ssl_vars; v->name.len; v++) { var = ngx_http_add_variable(cf, &v-> name, v->flags); if (var == NULL) { var->get_handler = v-> ;get_handler; var->data = v->data; }
return NGX_OK; }
2.5 init_main_conf(ngx_conf_t *cf, void *conf) Parameters: ngx_conf_t *cf and conf, conf are create_main The return value, here as a parameter; Return value: char * , NGX_CONF_OK indicates success; Remarks: The return value is only used as a judgment whether the operation is correct; Example: static char *ngx_http_core_init_main_conf(ngx_conf_t *cf, void * conf) { ngx_http_core_main_conf_t *cmcf = conf; //create_main is not configured if (cmcf->server_names_hash _max_size == NGX_CONF_UNSET_UINT) { Here is } if (cmcf ->server_names_hash_bucket_size == NGX_CONF_UNSET_UINT) { cmcf- >server_names_hash_bucket_size = ngx_cacheline_size; } cmcf->server_names_hash_bucket_size = ngx_align(cmcf->server_names_hash_bucket_size, ngx_cacheline_size); if (cmcf->variables_hash_max_size == NGX_CONF_UNSET_UINT) { cmcf->variables_hash_max_size = 512; } if (cmcf->variables_hash_bucket_size == NGX_CONF_UNSET_UINT) { cmcf->variables_hash_bucket_size = 64; } cmcf->variables_hash_bucket_size = ngx_align(cmcf->variables_hash_bucket_size, ngx_cacheline_size); if (cmcf->ncaptures) { cmcf->ncaptures = (cmcf->ncaptures + 1) * 3; } return NGX_CONF_OK; } 2.6 merge_srv_conf(ngx_conf_t *cf, void *prev, void
*conf) 参数:ngx_conf_t *cf,配置结构体,prev是main的配置结构体,conf是server的配置结构体;prev=cf->ctx.srv_conf[ctx_index],c/span> 返回值:char *,正确返回值是NGX_CONF_OK; 备注:返回值只是作为操作是否正确的一个判断; 示例: static char * ngx_http_barrier_merge_conf(ngx_conf_t *cf, void *parent, void *child) { ngx_http_barrier_conf_t *prev = parent; ngx_http_barrier_conf_t *conf = child; if (conf->shm_zone == NULL){ *conf = *prev; } ngx_conf_merge_value(conf->enable, prev->enable, 0); //default is 0 return NGX_CONF_OK; } 备注:merge server的主要功能是,如果main里配置了enable=1,而server{}里enable=
NGX_CONF_UNSET,则将server的enable=main的enable=1; 2.7 merge_loc_conf(ngx_conf_t *cf, void *prev, void
*conf) 原理同merge_srv_conf(ngx_conf_t *cf, void *prev,
void *conf) 2.8 postconfiguration(ngx_conf_t *cf) 参数:ngx_conf_t *cf; 返回值:ngx_int_t,正确返回值是NGX_OK; 备注:返回值只是作为操作是否正确的一个判断; 示例: static ngx_int_t ngx_http_tracker_init(ngx_conf_t *cf) { ngx_tracker_flag = 0; return NGX_OK; } Note: set the global variable flag Cleared to determine whether there is a barrier module. If it is not cleared, it will result in barrier if it is not added in the configuration.
zone, when kill –HUP, because the value of the global variable flag does not change, that is, it is not 0, when the user executes the traker command, A segfault occurred. 3、HTTP
commands 4, commonly used variables #define NGX_HTTP_MAIN_CONF Command storage location #define NGX_HTTP_SRV_CONF 0x04000000 #define NGX_HTTP_LOC_CONF 0x08000000 #define NGX_HTTP_UPS_CONF 0x10000000 #define NGX_HTTP_SIF_CONF 0x20000000 #define NGX_HTTP_LIF_CONF 0x40000000 #define NGX_HTTP_LMT_CONF 0x80000000 #define NGX_HTTP_MAIN_CONF_OFFSET offsetof(ngx_http_conf_ctx_t , main_conf) #define NGX_HTTP_SRV_CONF_OFFSET offsetof(ngx_http_conf_ctx_t, srv_conf) #define NGX_HTTP_LOC_CONF_OFFSET offsetof(ngx_http_conf_ctx_t, loc_ conf)
Example: static ngx_command_t ngx_http_print_commands [] = { { ngx_string("print"), NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, ngx_http_ print_setup, //set(), will convert to read Input the parameters passed in the command and save the appropriate value to the configuration structure NGX_HTTP_LOC_CONF_OFFSET, offsetof(ngx_http_print_loc_conf_t, ed), NULL },
ngx_null_command }; 5, commonly used functions 5.1 ProcessingRequest ngx_http_get_module_main_conf request request and module get main configuration. #define ngx_http_get_module_main_conf(r, module) Function function: According to request request and module get server Configuration. #define ngx_http_get_module_srv_conf(r, module) (r)->srv_conf[module.ctx_index] Function function: According to requestRequests and modules get location configured. #define ngx_http_get_module_loc_conf(r, module) (r)->loc_conf[module.ctx_index] 5.2 conf Function function: Get main configuration based on the conf structure and module. #define ngx_http_conf_get_module_main_conf(cf, module) main_conf[module.ctx_index] ngx_http_conf_get_module_srv_conf is configured according to the conf structure and module. #define ngx_http_conf_get_module_srv_conf(cf, module) gt;srv_conf[module.ctx_index]ngx_http_conf_get_module_loc_conf Function: is configured according to the #define ngx_http_conf_get_module_loc_conf(cf, module) t;loc_conf[module.ctx_index]5.3 Cycle ngx_http_cycle_get_module_main_conf #define ngx_http_cycle_get_module_main_conf(cycle, module) (cycle->conf_ctx [ngx_http_module.index] ? [ngx_http_module.index]) NULL)
The above introduces the composition of the nginx HTTP module, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.
Function function:
According to ngx_http_get_module_srv_conf
ngx_http_get_module_loc_conf
ngx_http_conf_get_module_main_conf
Function:
conf structure and module.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The message "Your organization has asked you to change your PIN" will appear on the login screen. This happens when the PIN expiration limit is reached on a computer using organization-based account settings, where they have control over personal devices. However, if you set up Windows using a personal account, the error message should ideally not appear. Although this is not always the case. Most users who encounter errors report using their personal accounts. Why does my organization ask me to change my PIN on Windows 11? It's possible that your account is associated with an organization, and your primary approach should be to verify this. Contacting your domain administrator can help! Additionally, misconfigured local policy settings or incorrect registry keys can cause errors. Right now

Windows 11 brings fresh and elegant design to the forefront; the modern interface allows you to personalize and change the finest details, such as window borders. In this guide, we'll discuss step-by-step instructions to help you create an environment that reflects your style in the Windows operating system. How to change window border settings? Press + to open the Settings app. WindowsI go to Personalization and click Color Settings. Color Change Window Borders Settings Window 11" Width="643" Height="500" > Find the Show accent color on title bar and window borders option, and toggle the switch next to it. To display accent colors on the Start menu and taskbar To display the theme color on the Start menu and taskbar, turn on Show theme on the Start menu and taskbar

By default, the title bar color on Windows 11 depends on the dark/light theme you choose. However, you can change it to any color you want. In this guide, we'll discuss step-by-step instructions for three ways to change it and personalize your desktop experience to make it visually appealing. Is it possible to change the title bar color of active and inactive windows? Yes, you can change the title bar color of active windows using the Settings app, or you can change the title bar color of inactive windows using Registry Editor. To learn these steps, go to the next section. How to change title bar color in Windows 11? 1. Using the Settings app press + to open the settings window. WindowsI go to "Personalization" and then

Do you see "A problem occurred" along with the "OOBELANGUAGE" statement on the Windows Installer page? The installation of Windows sometimes stops due to such errors. OOBE means out-of-the-box experience. As the error message indicates, this is an issue related to OOBE language selection. There is nothing to worry about, you can solve this problem with nifty registry editing from the OOBE screen itself. Quick Fix – 1. Click the “Retry” button at the bottom of the OOBE app. This will continue the process without further hiccups. 2. Use the power button to force shut down the system. After the system restarts, OOBE should continue. 3. Disconnect the system from the Internet. Complete all aspects of OOBE in offline mode

Taskbar thumbnails can be fun, but they can also be distracting or annoying. Considering how often you hover over this area, you may have inadvertently closed important windows a few times. Another disadvantage is that it uses more system resources, so if you've been looking for a way to be more resource efficient, we'll show you how to disable it. However, if your hardware specs can handle it and you like the preview, you can enable it. How to enable taskbar thumbnail preview in Windows 11? 1. Using the Settings app tap the key and click Settings. Windows click System and select About. Click Advanced system settings. Navigate to the Advanced tab and select Settings under Performance. Select "Visual Effects"

We all have different preferences when it comes to display scaling on Windows 11. Some people like big icons, some like small icons. However, we all agree that having the right scaling is important. Poor font scaling or over-scaling of images can be a real productivity killer when working, so you need to know how to customize it to get the most out of your system's capabilities. Advantages of Custom Zoom: This is a useful feature for people who have difficulty reading text on the screen. It helps you see more on the screen at one time. You can create custom extension profiles that apply only to certain monitors and applications. Can help improve the performance of low-end hardware. It gives you more control over what's on your screen. How to use Windows 11

Screen brightness is an integral part of using modern computing devices, especially when you look at the screen for long periods of time. It helps you reduce eye strain, improve legibility, and view content easily and efficiently. However, depending on your settings, it can sometimes be difficult to manage brightness, especially on Windows 11 with the new UI changes. If you're having trouble adjusting brightness, here are all the ways to manage brightness on Windows 11. How to Change Brightness on Windows 11 [10 Ways Explained] Single monitor users can use the following methods to adjust brightness on Windows 11. This includes desktop systems using a single monitor as well as laptops. let's start. Method 1: Use the Action Center The Action Center is accessible

The activation process on Windows sometimes takes a sudden turn to display an error message containing this error code 0xc004f069. Although the activation process is online, some older systems running Windows Server may experience this issue. Go through these initial checks, and if they don't help you activate your system, jump to the main solution to resolve the issue. Workaround – close the error message and activation window. Then restart the computer. Retry the Windows activation process from scratch again. Fix 1 – Activate from Terminal Activate Windows Server Edition system from cmd terminal. Stage – 1 Check Windows Server Version You have to check which type of W you are using
