server
{
listen 80;
location / {
proxy_pass https://xxxxx.xx.workers.dev/;
proxy_set_header Host xxxxx.xx.workers.dev;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
重启 nginx 后, 请求 ip 返回 502.
自己 0 运维经验, 搜了下大概是因为 https 的问题? 但尝试配置证书也都无效. 或者是因为 cf 5 秒盾的问题?
所以 nginx 可以实现转发么? 或者有其他方案?