From 2025dbad61e56e4400d3578ce4ff1fa3e4de053b Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Fri, 30 May 2014 13:04:28 +0100 Subject: [PATCH] Switch basic auth back on in web-secure Setting security.basic.enabled=false in a secure app doesn't make a lot of sense. The sample has it set to true now (the default) so users can login (via the form that is sitting in front of the basic auth filter chain). Fixes gh-997 --- .../src/main/resources/application.properties | 1 - 1 file changed, 1 deletion(-) diff --git a/spring-boot-samples/spring-boot-sample-web-secure/src/main/resources/application.properties b/spring-boot-samples/spring-boot-sample-web-secure/src/main/resources/application.properties index 12d9154ea94..4bdbe989712 100644 --- a/spring-boot-samples/spring-boot-sample-web-secure/src/main/resources/application.properties +++ b/spring-boot-samples/spring-boot-sample-web-secure/src/main/resources/application.properties @@ -1,3 +1,2 @@ spring.thymeleaf.cache: false debug: true -security.basic.enabled: false \ No newline at end of file