1关闭防火墙
service iptables stop
- 1
2设置django
开开启django时,使用0.0.0.0:xxxx,作为ip和端口例如:
python manage.py runserver 0.0.0.0:9000
然后在settings里修改ALLOWED_HOSTS = [],
改为ALLOWED_HOSTS = [‘*‘,],注意不要漏掉“,”。
其他机器就可以通过这台机器的ip和端口号访问django了。
例如:http://192.168.14.40:9000/index.html
原文地址:https://www.cnblogs.com/Alone-Tree/p/9752026.html
时间: 2024-10-19 19:47:38