From 4c73525f1893e64c6d7aafb4e5eb8b136fc93f6b Mon Sep 17 00:00:00 2001 From: Bas Huisman Date: Tue, 19 Nov 2024 15:13:53 +0100 Subject: [PATCH] add application.yml --- .gitignore | 1 - src/main/resources/application.yml | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 src/main/resources/application.yml diff --git a/.gitignore b/.gitignore index 2e6bc26..549e00a 100644 --- a/.gitignore +++ b/.gitignore @@ -31,4 +31,3 @@ build/ ### VS Code ### .vscode/ -/src/main/resources/application.yml diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 0000000..7fa33c8 --- /dev/null +++ b/src/main/resources/application.yml @@ -0,0 +1,18 @@ +server: + compression: + enabled: true + forward-headers-strategy: framework +logging: + level: + ROOT: info + nl.ictu: debug +spring: + application: + name: Pseudoniemen Service +management: + server: + port: 9080 + endpoints: + web: + exposure: + include: 'health, info'