我制作了一个Django应用程序,我使用manage.py
在Python中运行它,并使用URL
使用ip:port
访问它。
URL: 127.0.0.1:8000/admin/
现在我想将ip:port
更改为静态网址:http:/testapp.com/admin
。
我尝试在/etc/host
中更改它,但它只将IP
更改为
127.0.0.1
testapp
我可以将IP:PORT
更改为名称吗?
答案 0 :(得分:3)
没有......只有解决方案才能在port
80
中运行,因此0.0.0.0:80成为testapp.com或其他
答案 1 :(得分:1)
您唯一的选择是运行
./manage.py runserver 127.0.0.1:80
以超级用户身份然后更新您的/etc/hosts
文件,使testapp.com
指向127.0.0.1
。
答案 2 :(得分:0)
你能做到的唯一方法是在Port 80
中运行./manage.py runserver 127.0.0.1:80