diff options
author | William Harrington <kb0iic@berzerkula.org> | 2025-02-17 08:54:54 -0600 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2025-02-17 08:54:54 -0600 |
commit | 9eaa667c15a6d931ea371c176dffa32e81b01a2d (patch) | |
tree | 85862c7f8af06ac913712f32a94e1ed49d943cd5 /src/main/resources/application.yml | |
parent | 7d16ce128e09833b370fc923c05f9685c0808bcb (diff) |
Add HSTS, ignore csrf on shutdown endpoint, clean up sonarqube issues.
Diffstat (limited to 'src/main/resources/application.yml')
-rw-r--r-- | src/main/resources/application.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 540bcf5..38eb30f 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -10,6 +10,11 @@ spring: show-sql: false hibernate: ddl-auto: update + security: + user: + name: admin + password: admin123 + roles: ADMIN ssl: bundle: pem: @@ -119,7 +124,14 @@ jasypt: iv-generator-classname: org.jasypt.iv.NoIvGenerator password: builddb +logging: + level: + org.springframework.security: debug + management: + endpoint: + shutdown: + access: unrestricted endpoints: web: exposure: |