运行 Django 服务器在 pythonenywhere.com 上时会发生什么?

What happens when running Django server on pythonenywhere.com?

因为 pythonanywhere 是托管 python 网络应用程序的最佳地点之一。应用程序将根据 wsgi.py 配置托管在自己的服务器上。但是当我在它的 bash shell 上做这样的事情时会发生什么?

$ python manage.py runserver 127.0.0.1:9000

Performing system checks...
System check identified no issues (0 silenced).
April 28, 2016 - 15:29:48
Django version 1.9.5, using settings 'MyProject.settings'
Starting development server at http://127.0.0.1:9000/
Quit the server with CONTROL-C.

如您所见,我已将端口更改为 :9000,所以有什么方法可以访问它,或者它只是毫无意义,因为它 在服务服务器服务上提供应用程序 ?

这里是 PythonAnywhere 开发者。使用 manage.py runserver 无法访问您 运行 的服务器。它将尝试绑定到本地端口,但该端口在 PythonAnywhere 集群外部不可见。

[编辑]哦,谢谢你对 PythonAnywhere 的美言!