wandenberg / nginx-push-stream-module

A pure stream http push technology for your Nginx setup. Comet made easy and really scalable.
Other
2.22k stars 295 forks source link

Create as dynamic module option #255

Closed jaydlawrence closed 7 years ago

jaydlawrence commented 7 years ago

Since Nginx version 1.9.11, it has supported loading dynamic modules.

This would be really helpful for automating deployments using your library.

For example, importing the geoip module can now be done by: sudo apt-get install nginx-module-geoip

And then in the nginx config, specifying that the module should be loaded manually. load_module "modules/ngx_http_geoip_module.so";

wandenberg commented 7 years ago

@jaydlawrence the module is already able to be compiled as a dynamic module. I don't want to take the responsibility to develop a Debian package (or any other distribution package) but feel free to do one, or improve the one mentioned on the wiki page

jaydlawrence commented 7 years ago

Ok. Fair enough. Thanks

seanlinsley commented 5 years ago

the module is already able to be compiled as a dynamic module

... how? 😄