千家信息网

编译安装nginx

发表于:2025-01-23 作者:千家信息网编辑
千家信息网最后更新 2025年01月23日,一、需要的依赖包先使用yum安装yum install -y vim lrzsz tree screen psmisc lsof tcpdump wget ntpdate gcc gcc-c++ gl
千家信息网最后更新 2025年01月23日编译安装nginx

一、需要的依赖包先使用yum安装

yum install -y vim lrzsz tree screen psmisc lsof tcpdump wget ntpdate gcc gcc-c++ glibc glibc-devel pcre pcre-devel openssl openssl-devel systemd-devel net-tools iotop bc zip unzip zlib-devel bash-completion nfs-utils automake libxml2 libxml2-devel libxslt libxslt-devel perl perl-ExtUtils-Embed


二、在nginx官网上下载源码包文件


三、解压缩


四、编译

./configure --prefix=/apps/nginx \ --user=nginx \ --group=nginx \ --with-http_ssl_module \ --with-http_v2_module \ --with-http_realip_module \ --with-http_stub_status_module \ --with-http_gzip_static_module \ --with-pcre \ --with-stream \ --with-stream_ssl_module \ --with-stream_realip_module


五、安装

make && make install


0