1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【備忘録】DjangoでLAN内でサイト公開する方法(Windows)

Last updated at Posted at 2023-09-23

ローカルで開発しているときに少し手間取ったのでメモ程度に残しておこうと思う。

settings.py

ALLOWED_HOSTS = ['*']

runserver

manage.py runserver 0.0.0.0:8000

Windowsファイアウォール

コントロールパネルからWindows Defender Firewallの設定を開き、受信の規則を開く。

python.exeの設定(TCP)を探し、通信がブロックされていないことを確認する。

ブロックされている場合は、右クリックしてプロパティを開き、通信を許可する。

まとめ

上記の設定をしたところ、僕の環境ではローカルからアクセスできることを確認できました。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?