如何通过PythonAnywhere.com部署网站

时间:2020-01-14 09:19:48

标签: django web deployment pythonanywhere

我收到此错误消息。

enter image description here

所以我输入了setting.py文件并进行了更改

ALLOWED_HOSTS = ['localhost', '127.0.0.1', '[::1]', '.pythonanywhere.com']

并重新加载我的网站。

但没有任何改变。

enter image description here

这时候,我更改了这样的代码

ALLOWED_HOSTS = ['heenamkang.pythonanywhere.com']

,然后收到此错误消息。这是反映变化的证据。

enter image description here

enter image description here

但是我仍然无法输入'heenamkang.anywhere.com'

完全同时捕获第三张和第四张图像。

3 个答案:

答案 0 :(得分:1)

您的第一次回溯显示您的应用程序在PythonAnywhere上运行。另一个显示在本地计算机上运行的应用程序。

ALLOWED_HOSTS = ['127.0.0.1', 'heenamkang.pythonanywhere.com']应该足以使其在两种环境中都能正常工作。

答案 1 :(得分:0)

尝试一下,它对我有用。

var planeX = xScale(xValue(d));
var planeY = yScale(yValue(d));

答案 2 :(得分:0)

尝试在您的pythonanywhere网址之前添加.

ALLOWED_HOSTS = ['127.0.0.1', '.heenamkang.pythonanywhere.com']