Skip to content
Snippets Groups Projects
Commit c0eb4ae2 authored by Juan Fuentes's avatar Juan Fuentes
Browse files

Merge branch 'master' of sissource.ethz.ch:sispub/openbis

parents 890129b2 3f34b749
No related branches found
No related tags found
No related merge requests found
...@@ -130,6 +130,7 @@ trusted-cross-origin-domains=* ...@@ -130,6 +130,7 @@ trusted-cross-origin-domains=*
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
# The time after which an inactive session is expired by the service (in minutes). # The time after which an inactive session is expired by the service (in minutes).
session-timeout = 720 session-timeout = 720
max-number-of-sessions-per-user = 0
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
# Business rules configuration # Business rules configuration
......
...@@ -2,6 +2,7 @@ authentication-service = dummy-authentication-service ...@@ -2,6 +2,7 @@ authentication-service = dummy-authentication-service
# The time after which an inactive session is expired by the service (in minutes). # The time after which an inactive session is expired by the service (in minutes).
session-timeout = 720 session-timeout = 720
max-number-of-sessions-per-user = 0
session-workspace-root-dir = targets/session-workspace session-workspace-root-dir = targets/session-workspace
......
...@@ -101,7 +101,7 @@ public class SimplePropertyValidatorTest ...@@ -101,7 +101,7 @@ public class SimplePropertyValidatorTest
"M/d/yy HH:mm\n" + "M/d/yy HH:mm\n" +
"yyyy-MM-dd HH:mm:ss Z\n" + "yyyy-MM-dd HH:mm:ss Z\n" +
"yyyy-MM-dd'T'HH:mm:ssX\n" + "yyyy-MM-dd'T'HH:mm:ssX\n" +
"yyyy-MM-dd HH:mm:ss ZZZ\n" + "yyyy-MM-dd HH:mm:ss Z\n" +
"yyyy-MM-dd'T'HH:mm:ssXXX]'."); "yyyy-MM-dd'T'HH:mm:ssXXX]'.");
} }
} }
......
...@@ -173,7 +173,7 @@ session-timeout = 720 ...@@ -173,7 +173,7 @@ session-timeout = 720
# Session time (in minutes) in case of presents of file etc/nologin.html. Should be < 30. # Session time (in minutes) in case of presents of file etc/nologin.html. Should be < 30.
#session-timeout-no-login = 10 #session-timeout-no-login = 10
# Maximum number of sessions allowed per user. Default value is 1. # Maximum number of sessions allowed per user. Zero means unlimited number of sessions. Default value is 1.
# max-number-of-sessions-per-user = 1 # max-number-of-sessions-per-user = 1
# Comma separated list of users allowed to have unlimited number of sessions. Default: Empty list. # Comma separated list of users allowed to have unlimited number of sessions. Default: Empty list.
......
...@@ -2,6 +2,7 @@ authentication-service = dummy-authentication-service ...@@ -2,6 +2,7 @@ authentication-service = dummy-authentication-service
# The time after which an inactive session is expired by the service (in minutes). # The time after which an inactive session is expired by the service (in minutes).
session-timeout = 720 session-timeout = 720
max-number-of-sessions-per-user = 0
session-workspace-root-dir = targets/session-workspace session-workspace-root-dir = targets/session-workspace
......
...@@ -2,6 +2,7 @@ authentication-service = dummy-authentication-service ...@@ -2,6 +2,7 @@ authentication-service = dummy-authentication-service
# The time after which an inactive session is expired by the service (in minutes). # The time after which an inactive session is expired by the service (in minutes).
session-timeout = 720 session-timeout = 720
max-number-of-sessions-per-user = 0
# Authorization # Authorization
# Supported: 'no-authorization' and 'active-authorization' # Supported: 'no-authorization' and 'active-authorization'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment