Hello!
On Tue, Jun 11, 2013 at 1:56 AM, fc23229 wrote:
> The instruction on https://github.com/agentzh/encrypted-session-nginx-module
> is about installing with native nginx. Is there a easy way to install it
> with openresty? Would something like ./configure
> --with-encrypted-session-nginx-module work?
>
The ngx_encrypted_session module is enabled by default in
ngx_openresty so no action is required on your side. Just configure it
in your nginx.conf right away.
I've just made it clear in ngx_encrypted_session's README.
You can always check which modules are enabled in your openresty build
by checking the output of the "nginx -V" command. For example, in my
machine:
$ /usr/local/openresty/nginx/sbin/nginx -V
nginx version: ngx_openresty/1.2.8.6
built by gcc 4.7.3 (GCC)
TLS SNI support enabled
configure arguments: --prefix=/usr/local/openresty/nginx
--add-module=../ngx_devel_kit-0.2.18
--add-module=../iconv-nginx-module-0.10
--add-module=../echo-nginx-module-0.45
--add-module=../xss-nginx-module-0.03rc9
--add-module=../ngx_coolkit-0.2rc1
--add-module=../set-misc-nginx-module-0.22rc8
--add-module=../form-input-nginx-module-0.07
--add-module=../encrypted-session-nginx-module-0.03
--add-module=../srcache-nginx-module-0.21
--add-module=../ngx_lua-0.8.2
--add-module=../headers-more-nginx-module-0.20
--add-module=../array-var-nginx-module-0.03rc1
--add-module=../memc-nginx-module-0.13rc3
--add-module=../redis2-nginx-module-0.10
--add-module=../redis-nginx-module-0.3.6
--add-module=../auth-request-nginx-module-0.2
--add-module=../rds-json-nginx-module-0.12rc10
--add-module=../rds-csv-nginx-module-0.05rc2
--with-ld-opt=-Wl,-rpath,/usr/local/openresty/luajit/lib
--with-http_ssl_module
Alternatively, you can check out the "Components" page on the
openresty.org site:
http://openresty.org/#Components
Also, you can check out what options are available for openresty's
"configure" script by passing the "--help" option to it, as in
./configure --help
Best regards,
-agentzh