0
我們正在探索爲我們的Web應用程序啓用Google分析,但它們在相當嚴格的CSP後面提供,這將很難擴展。作爲替代方案,我已經探索使用ProxyPass通過CSP白名單中的Apache服務器發送請求。代理分析請求
Apache服務器包含這些指令:
SSLProxyEngine on
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
ProxyPass /google https://www.google-analytics.com/r/collect
ProxyPassReverse /google https://www.google-analytics.com/r/collect
客戶端代碼替換BuildHitTask爲了調用一切看起來在客戶精細但它未能達到這個終點,接收404響應。如果我單獨打開生成的跟蹤鏈接果然我看到谷歌404響應:
The requested URL /r/collect was not found on this server. That’s all we know.
上這是怎麼回事錯誤,或者如果它甚至有可能有什麼想法?