nginx_mod_so is dynamic loadable module for Nginx.
-
build nginx with mod_so
% cd nginx-1.0.9
% patch -p1 < <NGINX_MOD_SO_DIR>/nginx-1.0.9-mod-so.patch
% ./configure --add-module=<NGINX_MOD_SO_DIR> % make
-
compile shared module
% cd example % make NGINX_DIR=<NGINX_BUILD_DIR> % mkdir <NGINX_INSTALLED_DIR>/modules % cp http_example.so <NGINX_INSTALLED_DIR>/modules/
-
configuration
module ./modules/http_example.so; http { ... location = /example { example; } ... }
Tsukasa Hamano hamano@osstech.co.jp