• 喜欢前端以及PHP的朋友们可以加PHP同好会QQ群 点击加入qq群
  • 最近在写一个项目---"小A微信托管平台",大家可以去帮忙测试一下!功能在不断完善中,敬请关注!点击进入
  • 本站使用了PHP8.1与HTTP2.0协议,速度简直超级快有木有?

ubuntu编译安装Nginx1.20.1

Linux Mr.Adam 4年前 (2021-06-28) 2012次浏览 已收录 0个评论

ubuntu 编译安装 Nginx1.20.1

ubuntu 编译安装 Nginx1.20.1

下载文件

编译安装 nginx 需要 pcre 和 openssl 两个库,先下载下来
pcre8.45 下载
openssl1.1.1 下载
nginx 官网

创建一个用户

首先创建一个用户

useradd www

安装 nginx 必要的库

apt-get install gcc g++ autoconf make automake libtool libperl-dev zlib1g-dev libxslt-dev libgd-dev libgeoip-dev libgoogle-perftools-dev libncurses-dev -y

进行预编译

在这里我是把 openssl 和 pcre 源文件放到/root/source下了

./configure \
--prefix=/usr/local/nginx \
--user=www \
--group=www \
--with-threads \
--with-file-aio \
--with-http_ssl_module \
--with-http_v2_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_xslt_module \
--with-http_image_filter_module \
--with-http_geoip_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_auth_request_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_slice_module \
--with-http_degradation_module \
--with-http_stub_status_module \
--with-http_perl_module \
--with-mail --with-stream \
--with-stream_ssl_module \
--with-stream_realip_module \
--with-google_perftools_module \
--with-openssl=/root/source/openssl-1.1.1k \
--with-pcre=/root/source/pcre-8.45 \
--with-debug

显示如下内容则表明成功预编译

Configuration summary
  + using threads
  + using PCRE library: /root/source/pcre-8.45
  + using OpenSSL library: /root/source/openssl-1.1.1k
  + using system zlib library

  nginx path prefix: "/usr/local/nginx"
  nginx binary file: "/usr/local/nginx/sbin/nginx"
  nginx modules path: "/usr/local/nginx/modules"
  nginx configuration prefix: "/usr/local/nginx/conf"
  nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
  nginx pid file: "/usr/local/nginx/logs/nginx.pid"
  nginx error log file: "/usr/local/nginx/logs/error.log"
  nginx http access log file: "/usr/local/nginx/logs/access.log"
  nginx http client request body temporary files: "client_body_temp"
  nginx http proxy temporary files: "proxy_temp"
  nginx http fastcgi temporary files: "fastcgi_temp"
  nginx http uwsgi temporary files: "uwsgi_temp"
  nginx http scgi temporary files: "scgi_temp"

编译安装

make -j && make install

等待片刻就安装好了 :cool:


小 A 空间 , 版权所有丨如未注明转载 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明ubuntu 编译安装 Nginx1.20.1
喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址