nginx 反向代理https
时间: 2023-10-04 10:03:12 浏览: 20
nginx反向代理https
要在nginx中设置反向代理https,您需要在nginx配置文件中添加以下行:
```
location / {
proxy_pass https://example.com;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_ssl_verify off;
}
```
这将把所有请求转发到https://example.com,并将原始请求的头信息发送给服务器,同时关闭SSL验证以确保代理可以正常工作。您需要将`https://example.com`替换为您要代理的网站地址。
阅读全文