Nginx 反向代理

 official site:http://nginx.org

1.可以使用 HomeBrew 下载 nginx 工具

2.nginx 基本命令行

nginx --- 启动Nginx工具

nginx -s reload --- 重启Nginx工具

nginx -v  --- 查看Nginx版本信息

nginx -V  --- 查看Nginx文件路径信息

pkill -9 nginx --- 强制关闭Nginx

3.nginx 配置文件反向代理配置

server_name 配置 必须在服务器上配置 hosts 文件 配置,并指向本地

Mac Hosts 文件地址存放在/etc/hosts

Nginx 反向代理_第1张图片

这样就可以通 http://zx199307/home 或者 http://zx199307/v1 访问对应的路径

服务器名称 + 路径名称

你可能感兴趣的:(Nginx 反向代理)