Apache 反向代理与 Localhost

Apache 反向代理与 Localhost
ProxyPass /foo http://localhost:8080/bar
ProxyPassReverse /foo http://localhost:8080/bar

localhost 是相对于客户端还是服务器而言的?

答案1

Localhost 指的是服务器,或者更确切地说是提出问题的机器。当系统对 localhost 进行名称服务查找时,它(很可能)会得到 127.0.0.1 或 ::1 作为地址。这是本地机器上环回接口的地址。

相关内容