linux下如何安装Nginx1.16.0
时间:2023-05-17 20:56
安装必要依赖插件 创建文件夹并切换过去 下载安装包 (同样如果想安装其他的版本,可以去下面官网链接,选择其他版本的链接进行拷贝替换) 解压并安装 添加全局命令 测试安装 如下图,则安装成功: 验证服务是否启动成功 如下: 添加nginx服务 将以下内容插入: 以服务的方式启动nginx 查看服务是否启动 配置nginx服务开机自动启动 这下子就安装完毕了 ,配置文件在: 可选: nginx的版本号默认是打开的,可以在默认的错误页面和http响应头中查看到。 不同版本,特别是低版本的nginx可能存在漏洞,所以如果不希望被别人获取到版本号的话,可以选择进行版本号隐藏。 隐藏nginx版本号 nginx.conf文件的“server_tokens”修改成”off“: 再修改fastcgi.conf 修改如下行 重启nginx 以上就是linux下如何安装Nginx1.16.0的详细内容,更多请关注Gxl网其它相关文章!yum install -y gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel wget
mkdir /customer && cd /customer
wget https://nginx.org/download/nginx-1.16.0.tar.gz
tar zxvf nginx-1.16.0.tar.gzcd nginx-1.16.0./configure --prefix=/usr/local/nginxmake && make install
ln -s /usr/local/nginx/sbin/nginx /usr/bin/nginx
nginx -v
netstat -ntlp | grep nginx
vim /lib/systemd/system/nginx.service
[unit]description=nginxafter=network.target[service]type=forkingexecstart=/usr/local/nginx/sbin/nginxexecreload=/usr/local/nginx/sbin/nginx -s reloadexecstop=/usr/local/nginx/sbin/nginx -s quitprivatetmp=true[install]wantedby=multi-user.target
pkill nginxsystemctl start nginx
systemctl status nginx netstat -ntlp | grep nginx
systemctl enable nginx
vim /usr/local/nginx/conf/nginx.conf
cd /usr/local/nginx/confvim nginx.conf
http {...server_tokens off;...}
vim fastcgi.conf
fastcgi_param server_software nginx/$nginx_version;# 改为:fastcgi_param server_software nginx;
systemctl restart nginx