nginx 80端口如下配置 location /getPersonChs/ { proxy_pass https://ybj.jszwfw.gov.cn/yby/t-core/bindcard/v1.0/ggfw/getPersonChs/; } 被转发到本机的html
时间: 2023-07-12 13:04:41 浏览: 125
nginx转发https的配置文件,仅供参考
根据您提供的配置文件,nginx 80端口的请求会被代理到 https://ybj.jszwfw.gov.cn/yby/t-core/bindcard/v1.0/ggfw/getPersonChs/ 这个 URL 上。如果您希望将请求代理到本机的 HTML 文件,可以将 proxy_pass 指令修改为指向本机文件的路径,例如:
```
location /getPersonChs/ {
proxy_pass http://localhost/path/to/your/html/file;
}
```
请将上述路径替换为您实际的 HTML 文件路径。这样,当用户访问 http://your-domain.com/getPersonChs/ 时,nginx 将会将请求代理到本机的 HTML 文件。
阅读全文