如何在 mod_proxy 设置下引用 Apache http.conf 中的环境变量
How can I reference environment variable in http.conf of Apache under mod_proxy settings
如何在 mod_proxy 设置下引用 Apache http.conf 中的环境变量?我将 targetserver 设置为环境变量,但 apache mod_proxy 无法解析。有什么想法吗?
Configuration:
ProxyPass /lac/ http://${targetserver}/
从服务器收到错误消息
The proxy server received an invalid response from an upstream server. The proxy server could not handle the request GET /lac/.
Reason:
DNS lookup failure for: ${targetserver}
Apache/2.2.15 (CentOS) Server at localhost Port 80
我使用了 Apache/2.4.12,我可以使用 ${ENV_VARIABLE_NAME} 访问环境变量,例如:${targetservername}
服务器版本:Apache/2.4.12 (Unix)
服务器构建:2015 年 4 月 28 日10:58:48
如何在 mod_proxy 设置下引用 Apache http.conf 中的环境变量?我将 targetserver 设置为环境变量,但 apache mod_proxy 无法解析。有什么想法吗?
Configuration: ProxyPass /lac/ http://${targetserver}/
从服务器收到错误消息
The proxy server received an invalid response from an upstream server. The proxy server could not handle the request GET /lac/. Reason: DNS lookup failure for: ${targetserver} Apache/2.2.15 (CentOS) Server at localhost Port 80
我使用了 Apache/2.4.12,我可以使用 ${ENV_VARIABLE_NAME} 访问环境变量,例如:${targetservername}
服务器版本:Apache/2.4.12 (Unix)
服务器构建:2015 年 4 月 28 日10:58:48