KurtDu commited on
Commit
787e2a5
1 Parent(s): 79b4ca1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ CORS(app, supports_credentials=True)
15
  app.config['SESSION_TYPE'] = 'filesystem' # 使用文件系统存储
16
  app.config['SESSION_PERMANENT'] = False # 不持久化 session
17
  app.config['SESSION_USE_SIGNER'] = True # 为 session 数据添加签名保护
18
- app.config['SESSION_FILE_DIR'] = '/tmp/flask_session/' # 存储 session 文件的路径
19
 
20
  # 确保目录存在
21
  if not os.path.exists('/tmp/flask_session/'):
 
15
  app.config['SESSION_TYPE'] = 'filesystem' # 使用文件系统存储
16
  app.config['SESSION_PERMANENT'] = False # 不持久化 session
17
  app.config['SESSION_USE_SIGNER'] = True # 为 session 数据添加签名保护
18
+ app.config['SESSION_FILE_DIR'] = '/app/session_data' # 存储 session 文件的路径
19
 
20
  # 确保目录存在
21
  if not os.path.exists('/tmp/flask_session/'):