3. 使用远程登录工具(例如,PuTTY、Xshell)附带的本地文件上传功能,将本地证书文件和私钥文件上传到Nginx服务器的证书目录(示例中为/usr/local/nginx/conf/cert)。 4. 编辑Nginx配置文件(nginx.conf),修改与证书相关的配置内容。 vim /usr/local/nginx/conf/nginx.conf #以下属性中,以ssl开头的属性表示与证书配...
七、查看nginx的版本信息 查看安装or更新后的nginx版本,也可以直接nginx -V /usr/local/nginx/sbin/nginx -V 八、配置开机自启动 vim /lib/systemd/system/nginx.service 复制以下内容保存(按ESC后:wq保存退出) [Unit]Description=nginx serviceAfter=network.target[Service]Type=forkingExecStart=/usr/local/nginx...
wget http://nginx.org/download/nginx-1.12.2.tar.gz 4.解压文件,进入解压文件。 代码语言:javascript 复制 tar-zxvf nginx-1.12.2.tar.gz 5.执行配置,并安装 代码语言:javascript 复制 ./configure--prefix=/usr/local/nginx--user=www--group=www--with-http_stub_status_module--with-http_ssl_module ...
./configure--prefix=/usr/local/nginx--with-http_ssl_module 编译 代码语言:javascript 复制 make 安装 代码语言:javascript 复制 make install[路径,默认安装在usr/local路径下] 启动、关闭 代码语言:javascript 复制 # 启动/usr/local/nginx/sbin/nginx-c/usr/local/nginx/conf/nginx.conf # 重启/usr/local/...
tar -zxvf nginx-1.20.2.tar.gz 解压之后进入到nginx目录: cd nginx-1.20.2 默认配置模块: ./configure 需要添加https配置模块: ./configure --prefix=/usr/local/nginx --with-http_ssl_module 编译 make 安装 make install [路径,默认安装在usr/local路径下] ...
二、安装nginxyum install nginx 三、设置服务开机自启动并启动nginx服务systemctl enable nginxsystemctl start nginx 四、浏览器进行访问验证nginx服务是否正常运行 五、也可登录登录后台查询nginx访问日志 六、启用https需要申请ssl证书文件关于https证书的介绍可以参考视频介绍https://cloud...
tar -zxvf nginx-1.20.2.tar.gz 解压之后进入到nginx目录: cd nginx-1.20.2 默认配置模块: ./configure 需要添加https配置模块: ./configure--prefix=/usr/local/nginx--with-http_ssl_module 编译 make 安装 make install [路径,默认安装在usr/local路径下] ...
安装nginx Web服务器 配置SSL证书,使网站支持https安全访问 1. 注册阿里云账号,然后在阿里云上申请一个SSL证书 注册阿里云账号并登陆 进入SSL证书: 进入SSL证书 立即购买: 立即购买 选择免费证书: 选择免费证书 支付: 支付 确认支付: 确认支付 支付成功,进入控制台: ...
安装openssl模块yum -y install openssl openssl-devel解压缩文件tar -zxvf nginx-1.20.1.tar.gz 解压完成后 /usr/local/nginx会多出一个文件夹 nginx-1.20.1配置 ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module 编译、安装make & make install测试/usr...
接下来安装证书 一个证书 针对一个域名 进入nginx 目录下创建一个 mkdir cert 将两个文件上传到这个目录下 建议将文件重命名为 zhzq.pem 和 zhzq.key 编辑 vim nginx.conf server { listen 80; listen 443 ssl; server_name ; 你的域名 ssl off; ssl_certificate ../cert/zhzq.pem; ...