1、下载:直接上下载安装包:这里是nginx-1.16.1.zip
- http://nginx.org/download/nginx-1.16.1.zip
- 注意:绿色文件,解压即可用
2、安装:安装到一个没有中文路径的文件夹下 (注意:安装路径必须不能有中文,否则会报错)
3、Nginx启动:
- 复制你的nginx文件所在路径
- win+R 快捷键 搜索cmd 回车进入
- 进入你所下载的nginx文件的位置,如果下载在C盘,可以直接:cd 复制的路径
- 若是在D盘,可以先转到D盘 输入 d:
- nginx.exe 回车
- 打开浏览器:http://localhost
-
Welcome to nginx! If you see this page, the nginx web server is successfully installed and working. Further configuration is required. For online documentation and support please refer to nginx.org. Commercial support is available at nginx.com. Thank you for using nginx.
(注意:在下载完nginx文件之后,也可以找到文件所在位置,直接cmd进入)
之后之后回车,就进入了nginx所在位置啦 !!!
so easy啦~~~
注:nginx基本命令
在nginx根目录下执行:
启动:nginx
重新加载配置文件:nginx -s reload
关闭:nginx -s stop
4、反向代理
(1)HOST文件修改
打开:C:\Windows\System32\drivers\etc\HOSTS
127.0.0.1 a.syw.com
127.0.0.1 localhost
=> localhost也可以通过a.syw.com访问
(2)配置反向代理,打开nginx-1.16.1\conf\nginx.conf 添加一组server配置
server {
listen 80;
server_name a.syw.com;
location / {
# 转发到本地8080端口上
proxy_pass http://127.0.0.1:8080;
}
}
将80端口转到本地8080端口
访问地址:http://a.syw.com
....