XMLWAN 3 jaren geleden
bovenliggende
commit
a46d0e4cb5
2 gewijzigde bestanden met toevoegingen van 4 en 5 verwijderingen
  1. 2 2
      conf/app.conf
  2. 2 3
      static/js/login.js

+ 2 - 2
conf/app.conf Bestand weergeven

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

+ 2 - 3
static/js/login.js Bestand weergeven

84
 
84
 
85
 function getCookie(name){
85
 function getCookie(name){
86
     var arr = document.cookie.match(new RegExp("(^| )" + name + "=([^;]*)(;|$)"));
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
     return null;
89
     return null;
90
 }
90
 }
91
-