使用 Apache 的 mod_proxy 处理 POST 请求

发布于 2024-11-18 15:57:08 字数 388 浏览 2 评论 0原文

我目前在同一台 Apache 服务器上托管 2 个 Web 应用程序。让我们调用它们 A 和 B。我使用 JSONP 从 A 到 B 进行跨域 ajax 调用(我需要来自 B 的一些数据)。当我的请求太大并且 GET 根本无法工作时,这种方法的问题就变得明显了;我需要使用 POST 请求。

我安装了 mod_proxy 并将我的 Apache Web 服务器配置为充当反向代理,如下所示: http://bit.ly/rpeWJI< /a> .这对于 GET 请求来说效果很好,但我仍然无法让 POST 请求正常工作。有人可以帮助我吗?

附带说明一下,我正在为我的 Web 应用程序使用 Pylons Web 框架。

I am currently hosting 2 web applications on the same Apache server. Let's just call, them A and B. I was using JSONP to make cross domain ajax calls from A to B (I needed some data from B). The problem became apparent with this method when my request got too big and GET simply wouldn't work; I needed to use a POST request.

I installed mod_proxy and configured my Apache web server to act as a reverse proxy as illustrated here: http://bit.ly/rpeWJI . This worked beautifully with GET requests, but I am still unable to get POST requests to work properly. Can someone help me?

As a side note, I am using the Pylons web framework for my web applications.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

东走西顾 2024-11-25 15:57:08

您在 Apache 中启用了 mod_security 吗?

我在调试为什么 HTTP POST 请求针对我的反向代理失败时遇到了您的帖子。 (他们收到了 403 响应)。

结果我们的服务器正在使用 mod_security 和 OWASP 设置。监视错误日志,然后将 application/json 添加到批准的类型列表中解决了这个问题。

出于类似的原因,我还必须允许 PUT 请求。

Do you have mod_security enabled in Apache?

I came across your post while debugging why HTTP POST requests were failing against my reverse proxy. (They were receiving a 403 response).

It turned our the server was using mod_security with OWASP settings. Monitoring the error log and then adding application/json to the list of approved types solved it.

I also had to allow PUT requests for similar reasons.

年少掌心 2024-11-25 15:57:08

我可以建议使用 nginx 而不是 Apache。 这里是一个示例配置:

http {
    proxy_cache_path  /data/nginx/cache  levels=1:2    keys_zone=STATIC:10m
                                        inactive=24h  max_size=1g;
    server {
        location / {
            proxy_pass             http://1.2.3.4;
            proxy_set_header       Host $host;
            proxy_cache            STATIC;
            proxy_cache_valid      200  1d;
            proxy_cache_use_stale  error timeout invalid_header updating
                                  http_500 http_502 http_503 http_504;
        }
    }
}

May I suggest using nginx instead of Apache. Here is an example config:

http {
    proxy_cache_path  /data/nginx/cache  levels=1:2    keys_zone=STATIC:10m
                                        inactive=24h  max_size=1g;
    server {
        location / {
            proxy_pass             http://1.2.3.4;
            proxy_set_header       Host $host;
            proxy_cache            STATIC;
            proxy_cache_valid      200  1d;
            proxy_cache_use_stale  error timeout invalid_header updating
                                  http_500 http_502 http_503 http_504;
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文