Hello!
On Thu, Aug 7, 2014 at 4:14 PM, develephant.net wrote:
> This is probably a dumb question, but I have compiled (1.7.3rc0)
You mean 1.7.3.1rc0, right? OpenResty uses 4 numbers instead of 3 for
its versions.
> from
> https://github.com/openresty/ngx_openresty with the following:
>
> sudo ./configure --prefix=/usr/local/openresty/nginx/ --with-http_ssl_module
>
Your --prefix value looks wrong. The resulting nginx will be installed
to /usr/local/openresty/nginx/nginx/sbin/nginx, which can hardly be
what you want.
You should just use the default prefix value, /usr/local/openresty,
here. Also, --with-http_ssl_module is also enabled by default. So you
don't need to specify any options here for ./configure. Also, "sudo"
is only required for the "make install" command.
>
> unknown directive "set_by_lua_file"
> unknown directive "lua_code_cache"
>
These errors are usually a sign for using the wrong nginx executable.
Regards,
-agentzh