Apache http_proxy 随机 404

Apache http_proxy 随机 404

我在 Ubuntu Server 16.04 上配置了 Apache2 作为外部 Web 服务器的 http 反向代理。

这里有一件非常奇怪的事情,当页面加载时,它的一些资源(.css,.js)会返回 404,不是一直返回,而是随机返回的。

为了弄清楚发生了什么,我使用该服务器内部的 cURL 进行了检查curl -v -k "https://127.0.0.1:443/proxyed_path/css/resource.css",发现正如我已经知道的那样,有时我会得到正确的结果,但是当我重复执行此命令时,会出现 google 404 错误。

这是我收到的错误:

> Host: 127.0.0.1
> User-Agent: curl/7.47.0
> Accept: */*
>
< HTTP/1.1 404 Not Found
< Date: Thu, 11 Apr 2019 23:42:44 GMT
< Server: sffe
< Content-Type: text/html; charset=UTF-8
< X-Content-Type-Options: nosniff
< Content-Length: 1594
< X-XSS-Protection: 0
< Access-Control-Allow-Origin: *
<
<!DOCTYPE html>
<html lang=en>
  <meta charset=utf-8>
  <meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
  <title>Error 404 (Not Found)!!1</title>
  <style>
    *{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
  </style>
  <a href=//www.google.com/><span id=logo aria-label=Google></span></a>
  <p><b>404.</b> <ins>That’s an error.</ins>
  <p>The requested URL <code>/js/ui-bootstrap-tpls-1.3.1.min.js</code> was not found on this server.  <ins>That’s all we know.</ins>

谷歌如何响应我的请求?可能是该站点(一家医院)的防火墙在做一些恶意的事情?

答案1

最后我删除了 mod_proxy 并在该服务器上托管了网站的副本,这不是最干净的解决方案,但至少它运行完美。

相关内容