如何在 Business-Objects BI 4.1 上为 Apache 设置反向代理?
How to set up a reverse proxy for Apache on Business-Objects BI 4.1?
我需要确切地知道要在 httpd.conf 文件中添加什么,以便在这两个链接上为 Apache 设置反向代理:
http://localhost:8080/BOE
http://localhost:8080/AdminTools
我在这个页面上找到了一些信息:http://solveissue.com/note?id=1676146
ProxyPass /BI4/BOE http://localhost:8080/BOE
ProxyPassReverseCookiePath //BI4/BOE
ProxyPass /BI4/AdminTools http://localhost:8080/AdminTools
ProxyPassReverseCookiePath //BI4/AdminTools
但还不足以使其发挥作用。启动 Apache 时总是出现此错误:
ProxyPassReverseCookiePath takes two or three arguments, Path rewrite rule for proxying cookies
您缺少 space。应该是:
ProxyPassReverseCookiePath / /BI4/BOE
(添加了额外的 space 以进行说明)
我需要确切地知道要在 httpd.conf 文件中添加什么,以便在这两个链接上为 Apache 设置反向代理:
http://localhost:8080/BOE
http://localhost:8080/AdminTools
我在这个页面上找到了一些信息:http://solveissue.com/note?id=1676146
ProxyPass /BI4/BOE http://localhost:8080/BOE
ProxyPassReverseCookiePath //BI4/BOE
ProxyPass /BI4/AdminTools http://localhost:8080/AdminTools
ProxyPassReverseCookiePath //BI4/AdminTools
但还不足以使其发挥作用。启动 Apache 时总是出现此错误:
ProxyPassReverseCookiePath takes two or three arguments, Path rewrite rule for proxying cookies
您缺少 space。应该是:
ProxyPassReverseCookiePath / /BI4/BOE
(添加了额外的 space 以进行说明)