标签:configure admin tar -xvf http pen nss figure zlib code
准备nginx安装包,并放入指定目录中
nginx-1.13.7.tar.gz
安装nginx
安装必要工具
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
安装nginx(/home/admin/
目录下)
tar -xvf nginx-1.13.7.tar.gz
cd nginx-1.13.7
./configure --prefix=/usr/local/nginx/
make && make install
修改nginx.conf
文件
添加server
块
启动nginx
执行命令
/usr/local/nginx/sbin/nginx -c /home/admin/nginx-1.13.7/conf/nginx.conf
nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module
开启SSL模块,执行命令如下:
./configure --prefix=/usr/local/nginx/ --with-http_ssl_module
覆盖安装
make && make install
标签:configure admin tar -xvf http pen nss figure zlib code
原文地址:https://www.cnblogs.com/wscy/p/9028503.html