Improve remote shell security documentation

Previous to this commit, the remote shell security configuration
described that a default password will be generated with no extra
configuration. Actually, when Spring Security is configured for the
application, the remote shell reuses that configuration by default.

It turns out that the default log message is confusing as it was
referring to "application endpoints". Updated that log to a more
generic log message and updated doc accordingly.

Fixes gh-779
This commit is contained in:
Stephane Nicoll
2014-05-05 11:12:27 +02:00
parent 0f738be114
commit a330cb9b8a
3 changed files with 16 additions and 7 deletions

View File

@@ -128,7 +128,7 @@ public class AuthenticationManagerConfiguration extends
User user = AuthenticationManagerConfiguration.this.security.getUser();
if (user.isDefaultPassword()) {
logger.info("\n\nUsing default password for application endpoints: "
logger.info("\n\nUsing default security password: "
+ user.getPassword() + "\n\n");
}