Django Book 翻译
菜单>:
TOC
返回
原文:
Its possible to run a Django application on the same Web server as an application powered by another technology. The most straightforward way of doing this is to use Apaches configuration file, ``httpd.conf`` , to delegate different URL patterns to different technologies. (Note that Chapter 20 covers Django deployment on Apache/mod_python, so it might be worth reading that chapter first before attempting this integration.)
翻译:
同由其他技术驱动的应用一样,在相同的Web服务器上运行Django应用也是可行的。最简单直接的办法就是利用Apaches配置文件httpd.conf,将不同的URL类型代理至不同的技术。(请注意,第20章包含了在Apache/mod_python上配置Django的相关内容,因此在尝试本章集成之前花些时间去仔细阅读第20章或许是值得的。)
备注:
译者: