1

I followed the instructions here:
https://www.windowsazure.com/en-us/develop/python/tutorials/django-with-visual-studio/

However, whenever I try to open the url to my web app in the cloud I get a 500 error.

The tutorial doesn't mention setting up the TEMPLATE_DIRS setting in the django application or doing any work on the cloud service machine to install python/django. Could these be the problem?

4

1 回答 1

0

这里的简单错误。我在本地安装了一个由 django 项目导入的 python 模块。此模块未作为自动部署到 Azure 的一部分添加。

修复是为 Azure 机器启用远程桌面,并安装 python 模块。

最有用的调试工具是我远程进入Azure机器后通过本地IP访问网站。该站点的链接位于 IIS 站点设置中。这冒泡了 python 错误而不是通用的 500 错误。

希望这对其他人有帮助!

于 2012-09-25T15:36:15.310 回答