From e6eaf2fa8e3ac3150ff0da62632b3c95742d93fd Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Mon, 17 Jul 2023 10:45:24 +0800 Subject: [PATCH] fix(api): show values for actuator /env and /config-props endpoints was disabled by default in Spring Boot 3 --- komga/src/main/resources/application.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/komga/src/main/resources/application.yml b/komga/src/main/resources/application.yml index af9c31d1c..ce0d2fc19 100644 --- a/komga/src/main/resources/application.yml +++ b/komga/src/main/resources/application.yml @@ -66,6 +66,12 @@ server: management: endpoints.web.exposure.include: "*" endpoint: + configprops: + roles: ADMIN + show-values: when_authorized + env: + roles: ADMIN + show-values: when_authorized health: roles: ADMIN show-details: when_authorized