Ubuntu 安装 Nginx 1.22.1

Ubuntu 安装Nginx 有两种方式,一种是通过命令的方式,这种方式安装的Nginx版本低,之前漏扫扫出来Nginx版本过低,需要升级,所以现在用编译的方式安装一个版本稍微高点的。

apt-get update
apt-get install nginx

# 查看都有什么版本
apt-cache show nginx

1 安装所需要的包

apt-get install -y gcc
apt-get install -y libpcre3 libpcre3-dev
apt-get install -y zlib1g zlib1g-dev
apt-get install -y openssl 
apt-get install -y libssl-dev

2 解压Nginx压缩包

tar -zxvf nginx-1.22.1.tar.gz

cd nginx-1.22.1.tar.gz

Ubuntu 安装 Nginx 1.22.1_第1张图片

 3 运行命令,会在/usr/local 下生成一个nginx文件夹

./configure --prefix=/usr/local/nginx --with-stream --with-http_sub_module --with-http_stub_status_module --with-http_ssl_module

4 在/usr/local/nginx 下运行

make && make install

5 把nginx 加入到环境变量里

echo "PATH=/usr/local/nginx/sbin:${PATH}" > /etc/profile.d/nginx.sh
source /etc/profile.d/nginx.sh

6 nginx -v 查看是否完成

7 漏扫还会扫出nginx版本,可在nginx配置文件里http模块里添加

server_tokens off;

你可能感兴趣的:(部署,nginx,ubuntu,服务器)