我使用source env/bin/activate
激活了虚拟环境,然后使用python3 manage.py runserver 0.0.0.0:80
启动了服务器。
我确保我的settings.py
中包含以下内容:
ALLOWED_HOSTS = ['xx.xx.xx.xxx', 'mywebsite.org']
我启动服务器,它输出:
System check identified no issues (0 silenced).
January 28, 2019 - 21:40:33
Django version 2.0.7, using settings 'app.settings'
Starting development server at http://0.0.0.0:80/
Quit the server with CONTROL-C.
但是,我访问“ mywebsite.org”并输出
> Index of /
> Name Last modified Size Description cgi-bin
> 2018-08-23 07:26 -
我的网站首页通常在我访问“ http://127.0.0.1:8000/”时出现,那么如何显示呢?
我正在使用Mac