简体   繁体   中英

Access django on raspberry pi from LAN

I installed Django and can access the test page while on my Raspberry Pi by going to 127.0.0.1:8000 .

However, when I am on my LAN and try 192.168.1.23:8000 I get nothing.

I suspect because I'm running apache2 , I need to listen or forward the port? If I try 192.168.1.23 I successfully get the /var/www test page showing "it works".

If run by manage.py, by default, only listens locally. So you have to start django using

manage.py runserver 0.0.0.0:8000

to let it listen on other addresses too.

If run by apache via WSGI or FCGI please supply a copy of the config file.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM