According to the introduction of tengine official website, the ngx_dso_module module is mainly used to dynamically load modules at runtime without having to recompile Tengine every time. The limit on the number of dynamically loaded modules is 128. If the loaded dynamic module is modified, Tengine must be restarted for it to take effect, and only the http module is supported.
In fact, ngx_dso_module is a module that comes with tenginx; it has been installed when compiling and installing tengine, and can be viewed through sbin/nginx -V, such as:
Then its function is to dynamically load modules, Instead of having to re-./configure && make && make install
Syntax: load module_name module_path
Action segment: dso
Default: none
Configuration usage example:
Dynamically load ngx_http_lua_module.so. By default, module_path needs to be specified. If not specified, the relative path of the default loading path (NGX_PREFIX/modules or passed during configure) The path set by dso-path), that is, /usr/local/nginx/modules
Configure in nginx.conf
After the configuration is completed, execute sbin/nginx -t to verify whether the syntax is correct , then execute sbin/nginx -s reload to reload, and the dynamically loaded module will take effect.
Module address: https://yunpan.cn/cqSKP6BrJ2AeT Access password 4f50
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });The above introduces the nginx dynamic loading (ngx_dso_module) module, including module and nginx content. I hope it will be helpful to friends who are interested in PHP tutorials.