系统相关
首页 > 系统相关> > nginx 搭建下包平台

nginx 搭建下包平台

作者:互联网

安装依赖

yum -y install gcc gcc-c++ automake zlib zlib-devel \ openssl openssl–devel pcre pcre-devel

下载解压部署包

tar -xvf nginx-1.22.0.tar.gz -C /usr/local/

 

 

 编译安装

[root@bogon local]# cd nginx-1.22.0/
[root@bogon nginx-1.22.0]# ./configure

[root@bogon nginx-1.22.0]# make && make install

 修改nginx.conf配置文件

        location / {
            root   /usr/local/nginx/html/download;
            autoindex on;
            autoindex_exact_size off;
            autoindex_localtime on;
        }

 创建download目录

[root@bogon conf]# mkdir -p /usr/local/nginx/html/download

 启动nginx

$ cd /usr/local/nginx/sbin
# 检查配置文件是否有报错
$ ./nginx -t
$ ./nginx -s reload

 

标签:下包,local,nginx,usr,1.22,bogon,root,搭建
来源: https://www.cnblogs.com/libruce/p/16613254.html