Centos7 搭建nginx

nginx下载:

http://nginx.org/en/download.html

 

 

依赖安装:

yum -y install  gcc  pcre-devel  zlib-devel  openssl  openssl-devel gcc-c++
[root@61-67 ng]# ls
nginx-1.22.0  nginx-1.22.0.tar.gz
[root@61-67 ng]# tar -xvf nginx-1.22.0.tar.gz
[root@61-67 ng]# cd nginx-1.22.0
[root@61-67 ng]# ./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/nginx/sbin/nginx --conf-path=/usr/local/nginx/conf/nginx.conf --with-http_stub_status_module --with-http_gzip_static_module --with-stream
#编译
[root@61-67 ng]# make && make install
[root@61-67 ng]# cd /usr/local/nginx/sbin/
#检查配置
[root@61-67 ng]# ./nginx -t
#启动nginx
[root@61-67 ng]# ./nginx

  

 

posted @ 2022-08-10 14:58  香菜哥哥  阅读(122)  评论(0编辑  收藏  举报