将 http 请求的副本转发到另一个(测试)环境
我希望我的网络应用程序的所有生产数据也能流经我的测试环境。本质上,我想将生产站点的每个 http 请求转发到测试站点(并且还让生产网站为其提供服务!)。
有什么好的方法可以做到这一点?我的网站是用 Django 构建的,并由 mod_wsgi 提供服务。这最好是在应用程序级别 (Django)、Web 服务器级别 (Apache) 还是 mod_wsgi 级别实现?
I want all the production data for my web-app to also flow through my testing environment. Essentially, I want to forward every http request for the production site to the test site (and also have the production website serve it!).
What is a good way to do this? My site is built with Django, and served by mod_wsgi. Is this best implemented at the app-level (Django), web server level (Apache), or the mod_wsgi-level?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我设法像这样转发请求
对于代码重用,请考虑装饰器
I managed to forward request like this
For code reuse, consider decorators