Прошу меня простить, но то ли лыжи не едут, то ли я...
Порядок установки:
cd /home/install
wget http://nginx.org/download/nginx-1.7.4.tar.gz
wget http://mirror.yandex.ru/pub/OpenBSD/LibreSSL/libressl-2.0.5.tar.gz
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.35.tar.gz
wget http://zlib.net/zlib-1.2.8.tar.gz
tar -xzf nginx-1.7.4.tar.gz
tar -xzf libressl-2.0.5.tar.gz
tar -xzf pcre-8.35.tar.gz
tar -xzf zlib-1.2.8.tar.gz
cd libressl-2.0.5
./configure
make
make install
cd ..
cd nginx
./configure --user=www-data --group=www-data --with-pcre=/home/install/pcre-8.35/ --with-zlib=/home/install/zlib-1.2.8/ --with-http_ssl_module --with-cc-opt="-L /usr/local/include" --with-ld-opt="-I /usr/local/lib" --without-http_geo_module --without-http_proxy_module --without-http_ssi_module --without-http_upstream_ip_hash_module --with-http_gzip_static_module --with-http_stub_status_module --with-ipv6 --error-log-path=/mnt/log/nginx/error.log --without-mail_pop3_module --without-mail_imap_module --without-mail_smtp_module --http-log-path=/mnt/log/nginx/access.log --http-client-body-temp-path=/mnt/log/nginx/http-temp/client_body_temp --http-proxy-temp-path=/mnt/log/nginx/http-temp/proxy_temp --http-fastcgi-temp-path=/mnt/log/nginx/http-temp/fastcgi_temp --http-uwsgi-temp-path=/mnt/log/nginx/http-temp/uwsgi_temp --http-scgi-temp-path=/mnt/log/nginx/http-temp/scgi_temp
make
make install
При попытки запуска nginx получаю ошибку:
/usr/local/nginx/sbin/nginx: error while loading shared libraries: libssl.so.27: cannot open shared object file: No such file or directory
После устновки LibreSSL делал (и после делал)
ls /usr/local/lib
libcrypto.a libcrypto.la libcrypto.so libcrypto.so.30 libcrypto.so.30.0.0 libssl.a libssl.la libssl.so libssl.so.27 libssl.so.27.0.0 pkgconfig
Как видим файл на месте.
Что теперь не так то сделал?