一、安装nginx
1、下载nginx:首先,我们需要从nginx官网(http://nginx.org/en/download.html)或github(https://github.com/nginx/nginx/releases)下载nginx的最新版本。
https://nginx.org/download/nginx-1.18.0.zip
2、解压nginx:我们将下载好的zip文件解压到我们所希望的目录中,比如:D:\nginx。
D:\nginx
3、配置nginx:我们需要在nginx.conf文件中对nginx进行配置,配置文件位置在D:\nginx\conf目录下。我们可以通过以下地址查看配置文件:
D:\nginx\conf\nginx.conf
4、启动nginx:在命令行输入以下指令,nginx便会启动
start nginx
二、配置localhost
1、打开hosts文件:我们需要添加localhost的绑定,来将其与我们所配置的nginx服务绑定起来。我们可以在C:\Windows\System32\drivers\etc路径下找到hosts文件,并用管理员身份打开。
2、添加绑定IP:在打开的hosts文件中,添加如下记录:
127.0.0.1 localhost
3、保存hosts文件:保存hosts文件后,我们需要重新启动网络服务来使其生效。我们可以通过以下指令来重启网络服务:
ipconfig /flushdns
三、配置nginx静态页面
1、创建静态页面文件夹:我们需要在nginx的html目录下创建一个文件夹,用来存放静态页面。在D:\nginx\html目录下创建一个文件夹static。
D:\nginx\html\static
2、创建静态页面文件:在static目录下创建一个名为index.html的文件,编写简单的html静态页面代码。
<html>
<head>
<title>nginx static page</title>
</head>
<body>
<h1>Welcome to nginx static page!</h1>
</body>
</html>
3、配置nginx服务器:在nginx.conf配置文件中,我们需要添加如下指令,用来配置nginx服务,使其能够访问我们创建的静态页面:
server {
listen 80;
server_name localhost;
location /static/ {
root html;
index index.html index.htm;
}
}
4、重新启动nginx服务:在命令行输入以下指令,nginx便会重新启动
nginx -s reload
四、通过浏览器验证页面
我们可以通过浏览器访问localhost/static/index.html,若能访问到静态页面,则安装nginx成功!