Closed Lax closed 5 years ago
Nginx dynamic module build system can compile multiple modules in a single .so
ngx_module_name
Users can enable/disable HTTP or STREAM or both module[s] by --without-http or --with-stream
--without-http
--with-stream
./configure options
./configure
HTTP
./configure --add-dynamic-module=traffic-accounting-nginx-module
ngx_http_accounting_module.so
STREAM
ngx_stream_accounting_module.so
fix #31 #32 #34 #35
Nginx dynamic module build system can compile multiple modules in a single .so
ngx_module_name
Users can enable/disable HTTP or STREAM or both module[s] by
--without-http
or--with-stream
./configure
optionsHTTP
(default)./configure --add-dynamic-module=traffic-accounting-nginx-module
module filengx_http_accounting_module.so
HTTP
+STREAM
./configure --add-dynamic-module=traffic-accounting-nginx-module
--with-stream module filengx_http_accounting_module.so
STREAM
-only./configure --add-dynamic-module=traffic-accounting-nginx-module
--without-http --with-stream module filengx_stream_accounting_module.so
fix #31 #32 #34 #35