Home >Backend Development >PHP Tutorial >Linux Nginx upgrade
Please indicate the source for reprinting http://coderknock.com
To upgrade Nginx, you can refer to Linux Nginx installation and possible errors
Just modify the following steps: The parameters used when
./configure
are different:
That is to say, use ./configure XXXXX [content in the above image]
, and then install it with Linux Nginx and errors may occur
The installation steps are the same as shown in .
make install
nginx -V
you can see that it is a new version, but the actual use at this time is still an old version and needs to be restarted: <code>nginx <span>-s</span> stop nginx <span>-c</span> /etc/nginx/nginx<span>.</span>conf</code>
above /etc/nginx/nginx.conf
According to the actual Situation transformation
To check whether it is a new version, you can use http://tool.chinaz.com/Gzips/?q=coderknock.com q= is followed by your own website domain name:
The red box is the currently used version
The above introduces the Linux Nginx upgrade, including Linux and nginx content. I hope it will be helpful to friends who are interested in PHP tutorials.