I am using spring boot 3.2.
In my application.yml, I have the following property
spring:
ssl:
bundle:
jks:
server:
keystore:
location: ssl.pfx
In my profile specific properties file application-local.yml
, I want to disable this property so spring doesn’t look for this file when it starts up. How do I do this? I added following and it doesn’t help
server:
ssl:
enabled: false