Python/Django 镜像或代理应用程序

发布于 2024-10-18 12:54:47 字数 289 浏览 5 评论 0原文

我需要使用 Django/Python 设置镜像/代理站点。我需要做的

是我有一个网站 abc.com。

如果我访问 abc.com/stackoverflow.com,我希望所有内容都从我位于 abc.com 的服务器提供。这包括所有 JS、CSS 和图像。

所以我想要一个 django 镜像/代理应用程序,它需要一个 url,重写 html,提取 html 和内容并从本地镜像提供服务器。

[编辑]
我更喜欢 Django 应用程序,但非 Django python 应用程序也不错。

I need to setup a mirror/proxy site using Django/Python. What I need to do

I have a site say abc.com.

If I go to abc.com/stackoverflow.com, I want all content to be served from my server at abc.com. This includes all JS, CSS and images.

So I want a django mirror/proxy app, which takes a url, rewrites the html, pulls the htmls and content and servers it from a local mirror.

[Edit]
I prefer a Django app, but a non-Django python app would be good as well.

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

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

发布评论

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

评论(1

海之角 2024-10-25 12:54:47

您需要虚拟主机设置。您必须连接多个域名,以便它们由同一 Web 服务器提供服务。这是通过将域指向同一服务器并在那里设置虚拟主机来实现的。 Django 或其他提供页面服务的软件不直接参与其中。

You want a vhost setup. You have to connect multiple domain names so that they are served by the same web server. That is accomplished by pointing the domains to the same server and setting up vhosting there. Django, or other software that serves the pages aren't directly involved in it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文