为啥frp映射后不能转发请求?
情况是这样的,我有台内部windows服务器,里面运行一个软件,一直在产生数据,然后我通过frp内网穿透
如 test.com:1000 能访问到数据
然后我有一个项目需要用到这个数据
项目地址是abc.com
然后我就在项目location上添加了几个转发
如 location /test {
proxy_pass test.com:1000;
}
但是结果是当我访问 abc.com/test 时候报错了
The page you requested was not found.
<p>Sorry, the page you are looking for is currently unavailable.<br/>
Please try again later.
<p>The server is powered by <a href="https://github.com/fatedier/frp">frp</a>.</p>
<p><em>Faithfully yours, frp.</em></p>
问下大家有没有遇到过这种情况?