您好,登錄后才能下訂單哦!
一、官網下載源碼
http://nginx.org/en/download.html
二、上傳到指定的安裝目錄
tar vxf nginx-1.16.1.tar.gz
cd cd nginx-1.16.1 && ./config --prefix=/etc/nginx
./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.
安裝需要的插件
yum -y install openssl openssl-devel
checking for zlib library ... not found
./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using --without-http_gzip_module
option, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using --with-zlib=<path> option.
安裝需要的插件
yum install zlib-devel -y
./configure --prefix=/usr/local/nginx
make
三、啟動nginx
./sbin/nginx
四、查看nginx 啟動配置詳情
./sbin/nginx -t
五、隱藏nginx版本號
vim conf/nginx.conf
http server 路徑下添加 server_tokens off;
vim conf/fastcgi.conf
修改 fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
fastcgi_param SERVER_SOFTWARE nginx;
重啟或者reload nginx
pkill nginx && ./sbin/nginx
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。