0
0

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 Settings.py 備忘

Posted at

Django Settings.py 備忘

 いつも新規プロジェクトの時、設定を忘れてしまうので備忘を兼ねて共有


セッションタイムアウトの設定(秒で指定)

SESSION_COOKIE_AGE = 600

1リクエストごとにセッション情報を更新

SESSION_SAVE_EVERY_REQUEST = True

ブラウザを閉じたらセッションを終了

SESSION_EXPIRE_AT_BROWSER_CLOSE = True

受信ファイルサイズ変更(1GBの時)

DATA_UPLOAD_MAX_MEMORY_SIZE = 1024 * 1024 * 1024

管理者のログイン機能を通常のログイン機能として使う

LOGIN_URL='admin:login'
LOGOUT_REDIRECT_URL='/'

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?