标签:nginx ssl 指定 com 例子 info 方便 编译 http
源码包安装就是在官网下载源代码自己编译安装。#useradd nginx -s /sbin/nologin -M
参数讲解:
-s是指定目录;/sbin/nologin目录的用户是无法登录的也是为了安全考虑;-M是不生成家目录了
上传到指定目录:
解压:
进去解压后的目录:
预编译参数设置 -->编译-->安装
[root@oldboy nginx-1.6.3]# ./configure --user=nginx --group=nginx --prefix=/application/nginx-1.6.3/ --with-http_stub_status_module --with-http_ssl_module
[root@oldboy nginx-1.6.3]# make
[root@oldboy nginx-1.6.3]# make install
创建软连接(也可以不创建,但为了方便还是创建吧):#ln -s /application/nginx-1.6.3 /application/nginx
至此 源码编译安装完成
标签:nginx ssl 指定 com 例子 info 方便 编译 http
原文地址:https://blog.51cto.com/kangxi/2405233