XMLWAN 3 년 전
부모
커밋
a46d0e4cb5
2개의 변경된 파일4개의 추가작업 그리고 5개의 파일을 삭제
  1. 2 2
      conf/app.conf
  2. 2 3
      static/js/login.js

+ 2 - 2
conf/app.conf 파일 보기

@@ -1,6 +1,6 @@
1 1
 appname = 酷医
2 2
 httpport = 8091
3
-runmode = prod
3
+runmode = dev
4 4
 copyrequestbody = true
5 5
 
6 6
 is_sso_use_session_id_key = true
@@ -8,7 +8,7 @@ is_sso_use_session_id_key = true
8 8
 sessionon = true
9 9
 sessiongcmaxlifetime = 3600
10 10
 
11
-login_token_expiration_second = 43200
11
+login_token_expiration_second = 604800
12 12
 
13 13
 enablexsrf = true
14 14
 xsrfkey = 61oETzKXQAGaYdkL5gEmGeJJFuYh7EQnp2XdTP1o

+ 2 - 3
static/js/login.js 파일 보기

@@ -84,8 +84,7 @@ function setCookie(name,value){
84 84
 
85 85
 function getCookie(name){
86 86
     var arr = document.cookie.match(new RegExp("(^| )" + name + "=([^;]*)(;|$)"));
87
-    if (arr != null) 
88
-        return unescape(arr[2]); 
87
+    if (arr != null)
88
+        return unescape(arr[2]);
89 89
     return null;
90 90
 }
91
-