当我阅读django doc时,apache配置文件应配置如下
<Directory /tutorial/django/tutorial/tutorial/>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
这意味着django必须安装在运行apache的同一服务器上。对吧?
据我所知,apache和tomcat可以位于其他服务器上。
架构如下。
apache-负载均衡器-tomcat
但是Django必须像下面这样吗?
负载均衡器-apache(+ django)
如果是,有任何原因吗?