博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
django的settings.py设置session
阅读量:6336 次
发布时间:2019-06-22

本文共 1492 字,大约阅读时间需要 4 分钟。

 

############# SESSIONS #############SESSION_CACHE_ALIAS = 'default'                         # Cache to store session data if using the cache session backend.SESSION_COOKIE_NAME = 'sessionid'                       # Cookie name. This can be whatever you want.SESSION_COOKIE_AGE = 60 * 5                             # Age of cookie, in seconds (default: 2 weeks). Now is 5 minutes.SESSION_COOKIE_DOMAIN = None                            # A string like ".example.com", or None for standard domain cookie.SESSION_COOKIE_SECURE = False                           # Whether the session cookie should be secure (https:// only).SESSION_COOKIE_PATH = '/'                               # The path of the session cookie.SESSION_COOKIE_HTTPONLY = True                          # Whether to use the non-RFC standard httpOnly flag (IE, FF3+, others)SESSION_SAVE_EVERY_REQUEST = False                      # Whether to save the session data on every request.SESSION_EXPIRE_AT_BROWSER_CLOSE = True                  # Whether a user's session cookie expires when the Web browser is closed.SESSION_ENGINE = 'django.contrib.sessions.backends.db'  # The module to store session dataSESSION_FILE_PATH = None                                # Directory to store session files if using the file session module. If None, the backend will use a sensible default.SESSION_SERIALIZER = 'django.contrib.sessions.serializers.JSONSerializer'  # class to serialize session data

 

转载于:https://www.cnblogs.com/linn/p/3895542.html

你可能感兴趣的文章
mysql [ERROR] Can't create IP socket: Permission denied
查看>>
PBRT笔记(4)——颜色和辐射度
查看>>
CustomView的手势缩放总结
查看>>
linux复制指定目录下的全部文件到另一个目录中,linux cp 文件夹
查看>>
CentOS yum安装mysql
查看>>
OceanBase笔记1:代码规范
查看>>
[Algorithms] Longest Increasing Subsequence
查看>>
MAC下GitHub命令操作
查看>>
springboot之filter/listener/servlet
查看>>
Thinkphp --- 去掉index.php
查看>>
Spring+SpringMVC+MyBatis深入学习及搭建(十一)——SpringMVC架构
查看>>
oracle故障解决
查看>>
tcpdump
查看>>
数据库内存结构
查看>>
利用Shell开发跳板机功能脚本案例
查看>>
51CTO的技术门诊谈OSSIM
查看>>
六年心路成长 —— 做自己
查看>>
ios电话拨打进行监听电话状态
查看>>
京东基于Spark的风控系统架构实践和技术细节
查看>>
什么时候使用CountDownLatch
查看>>