New Config Shell File

前端之家收集整理的这篇文章主要介绍了New Config Shell File前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

With Nginx 1.9.11 onwards the wayconfigshell file should be written has changed. It is still compatible with theold methodbut the new method should be used if the module is intended to be a dynamic module.

The new format works when compiling a module as either a static or dynamic module. The config file is in Bourne shell format which is the same as the old method.

An example of the new format is as follows:

ngx_module_type=HTTP
ngx_module_name=ngx_http_my_module
ngx_module_srcs="$ngx_addon_dir/ngx_http_my_module.c"

. auto/module

ngx_addon_name=$ngx_module_name

You do not need to set empty variables for things that are not required as these will be cleared for each module by the build system.

Note

the.auto/moduleline is required to trigger the new module build system.

If the module is to be used with prevIoUs versions of Nginx it is possible to have a config file support bothe the old and new methods. See theConverting Static Modules to Dynamic Modulesguide for an example of this.

Compiling

With the new configure system a module can be added to the configure line with--add-module=/path/to/modulefor static compilation and--add-dynamic-module=/path/to/modulefor dynamic compilation.

Options
ngx_module_type

The type of module to build. Possible options areHTTP,CORE,34);border:0px;font-style:inherit;font-weight:inherit;vertical-align:baseline;">HTTP_FILTER,34);border:0px;font-style:inherit;font-weight:inherit;vertical-align:baseline;">HTTP_INIT_FILTER,34);border:0px;font-style:inherit;font-weight:inherit;vertical-align:baseline;">HTTP_AUX_FILTER,34);border:0px;font-style:inherit;font-weight:inherit;vertical-align:baseline;">MAIL,34);border:0px;font-style:inherit;font-weight:inherit;vertical-align:baseline;">STREAMorMISC

ngx_module_name

The name of the module. This is used in the build system for compiling a dynamic module. Multiple whitespace separated values are possible here for multiple modules in a single set of source files,the first name in this list will be used for the name of the output binary for a dynamic module. See the complex example inConverting Static Modules to Dynamic Modules. The names used in this should be the same names as themoduledefinitionstruct.

ngx_module_incs

Include paths required to build the module.

ngx_module_deps

A list of.hfiles which are part of the module which are required to build it.

ngx_module_srcs

A whitespace separated list of source files used to compile the module. The$ngx_addon_dirvariable can be used as a placeholder for the path of the module source.

ngx_module_libs

A list of libraries to link with the module. For example libpthread would be linked usingngx_module_libs=-lpthread. The following macros can be used to link against the same libraries as Nginx:LIBXSLT,34);border:0px;font-style:inherit;font-weight:inherit;vertical-align:baseline;">LIBGD,34);border:0px;font-style:inherit;font-weight:inherit;vertical-align:baseline;">GEOIP,34);border:0px;font-style:inherit;font-weight:inherit;vertical-align:baseline;">PCRE,34);border:0px;font-style:inherit;font-weight:inherit;vertical-align:baseline;">OPENSSL,34);border:0px;font-style:inherit;font-weight:inherit;vertical-align:baseline;">MD5,34);border:0px;font-style:inherit;font-weight:inherit;vertical-align:baseline;">SHA1,34);border:0px;font-style:inherit;font-weight:inherit;vertical-align:baseline;">ZLIBandPERL.

ngx_addon_name

Supplies the name of the module in the console output text of theconfigurescript.

ngx_module_link

This is set by the build system toDYNAMICfor a dynamic module orADDONfor a static module. It is not used often but can be useful if something different needs to happen for different compile modes. The value of this variable can be tested using a standardifas used in a shell script.

ngx_module_order

Set the load order for the module which is useful forHTTP_FILTERandHTTP_AUX_FILTERmodule types.

The order is stored in a reverse list. Thengx_http_copy_filter_moduleis near the bottom of the list so is one of the first to be executed. This reads the data for other filters. Near the top of the list isngx_http_write_filter_modulewhich writes the data out and is one of the last to be executed.

The format for this option is typically the current module’s name followed by a whitespace separated list of modules to insert before,and therefore execute after. The module will be inserted before the last module in the list that is found to be currently loaded.

By default for filter modules this is set to"$ngx_module_namengx_http_copy_filter"which will insert the module before the copy filter in the list and therefore will execute after the copy filter. For other module types the default is empty.

原文链接:https://www.f2er.com/bash/387964.html

猜你在找的Bash相关文章