如何调试Apache / HTTPD上发生的串扰?

时间:2016-03-17 16:52:24

标签: apache tomcat ajp

我已经在Tomcat 7和Java 8上运行了我的webapp。这是一个带有Atmosphere框架的Grails应用程序。当我直接从浏览器连接到它时,一切都很好。

然而,当我使用Apache / HTTPD 2.4代理它时,偶尔会看到一些串扰。通过串扰我的意思是,当多个用户尝试通过HTTPS访问设置时,一些用户会看到对另一个用户请求的响应。

调试此类问题的最佳方法是什么?我在Apache的Bugzilla上找不到类似的问题,但我可能使用了错误的关键字。

这是我的/etc/httpd/conf.d/proxy.conf

的内容
ProxyRequests Off

ProxyPass /foo/stomp/ ws://localhost:8080/foo/stomp/
ProxyPassReverse /foo/stomp/ ws://localhost:8080/foo/stomp/

ProxyPass /foo/atmosphere-ws/ ws://localhost:8080/foo/atmosphere/
ProxyPassReverse /foo/atmosphere-ws/ ws://localhost:8080/foo/atmosphere/

ProxyPass /foo/ ajp://localhost:8009/foo/
ProxyPass /foo  ajp://localhost:8009/foo/

编辑:根据symcbean的评论,这里是标题

HTTP/1.1 200 OK
Date: Thu, 17 Mar 2016 18:00:58 GMT
Server: Apache
X-Atmosphere-tracking-id: 3ef14a8f-fe1b-480e-865c-40152f51ca72
Content-Type: text/html;charset=ISO-8859-1
Content-Language: en-US
Content-Length: 8799
X-Protocol: https
Connection: close

标题上没有缓存。

谢谢!

0 个答案:

没有答案