标签:efi div 源安装 openssl 编译安装 head 文件 too cpu
安装依赖:yum install -y gcc gcc-c++ make zlib zlib-devel libtool opennssl openssl-devel pcre pcre-devel
nginx的下载链接:http://nginx.org/en/download.html
下载tar解压缩后,configure、make、make install三步走。
useradd -s /sbin/nologin -M nginx
./configure --user=nginx --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
make
(可以根据CPU核数,添加-j
选项加快编译速度)make install
启动:/usr/local/nginx/sbin/nginx
,或者指定配置文件:/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
使用yum、apt等包管理器安装
/usr/local/nginx/sbin/nginx -t
标签:efi div 源安装 openssl 编译安装 head 文件 too cpu
原文地址:https://www.cnblogs.com/XY-Heruo/p/14060637.html