Порядок установки:
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
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-openssl=/home/install/libressl-2.0.5/ --with-http_ssl_module --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[3]: Leaving directory `/home/install/libressl-2.0.5'
make[2]: Leaving directory `/home/install/libressl-2.0.5'
/bin/sh: 3: ./config: not found
make[1]: *** [/home/install/libressl-2.0.5//.openssl/include/openssl/ssl.h] Ошибка 127
make[1]: Leaving directory `/home/install/nginx-1.7.4'
make: *** [build] Ошибка 2
Что я делаю не правильно?