Hello
Using OpenResty, I compiled and installed a Lua-capable Nginx in /tmp so I could experiment with it before replacing the current Nginx that was installed through apt-get.
However, since files are located in non-standard locations, Nginx can't find them:
====================================
/tmp/ngx_openresty-1.4.3.6/install/usr/local/openresty/nginx/sbin# ./nginx
./nginx: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No such file or directory
====================================
FYI, here's what tmp/ngx_openresty-1.4.3.6/install/usr/local/openresty/ contains:
====================================
drwxr-xr-x 6 root root 4096 Jan 21 16:01 luajit/
drwxr-xr-x 5 root root 4096 Jan 21 16:03 lualib/
drwxr-xr-x 6 root root 4096 Jan 21 16:01 nginx/
====================================
How should configure Debian so that Nginx find the files it needs?
Thank you.