The method of installing nginx in Linux and Windows
This article mainly introduces "the method of installing nginx in Linux and Windows". In the daily operation, I believe that many people have doubts about the method of installing nginx in Linux and Windows. The editor consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts about "the method of installing nginx in Linux and Windows". Next, please follow the editor to study!
Install nginx in centos
Of course, package installation is the simplest, and the nginx official website also provides package installation. First go to this directory / etc/yum.repos.d/, and then create a new nginx.repo repository file with the name of the file and the suffix .repo.
Modify the middle 6. 0 according to your current centos version number.
[nginx] name=nginx repobaseurl= http://nginx.org/packages/centos/6/$basearch/gpgcheck=0
Then you can use the command yum install nginx to install nginx with one click, and it is the latest stable version of the installation
Install nginx in ubuntu
Nginx also provides the deb package. Enter the directory / etc/apt, edit sources.list, and add the following two lines
Modify that trusty according to your ubuntu version
Deb http://nginx.org/packages/ubuntu/ trusty nginx deb-src http://nginx.org/packages/ubuntu/ trusty nginx
Just execute the installation command, will give an unsafe warning, you can ignore it.
Sudo apt-get updatesudo apt-get install nginx
Install nginx in windows
Go to the official website download page and download the latest stable version directly.
After decompressing, open the cmd window, cd to the folder where nginx.exe is located, and execute nginx
At this point, the study on "how to install nginx in Linux and Windows" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!