Reverted some value to default ones

This commit is contained in:
Jongyoul Lee 2016-08-03 00:24:03 +09:00
parent 8589545ee3
commit 9a03d40d0e
2 changed files with 3 additions and 3 deletions

View file

@ -26,8 +26,8 @@ user1 = user1, role1
# anon means the access is anonymous.
# authcBasic means Basic Auth Security
# To enfore security, comment the line below and uncomment the next one
#/** = anon
/** = authc
/** = anon
#/** = authc
[roles]
role1 = *

View file

@ -573,7 +573,7 @@ public class ZeppelinConfiguration extends XMLConfiguration {
// Allows a way to specify a ',' separated list of allowed origins for rest and websockets
// i.e. http://localhost:8080
ZEPPELIN_ALLOWED_ORIGINS("zeppelin.server.allowed.origins", "*"),
ZEPPELIN_ANONYMOUS_ALLOWED("zeppelin.anonymous.allowed", false),
ZEPPELIN_ANONYMOUS_ALLOWED("zeppelin.anonymous.allowed", true),
ZEPPELIN_CREDENTIALS_PERSIST("zeppelin.credentials.persist", true),
ZEPPELIN_WEBSOCKET_MAX_TEXT_MESSAGE_SIZE("zeppelin.websocket.max.text.message.size", "1024000");