-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yaml
29 lines (29 loc) · 1.08 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 2023 Canonical Ltd.
# See LICENSE file for licensing details.
options:
application-config:
type: string
description: >
Spring Boot configuration properties in JSON format, it will be passed to
the Spring Boot application as SPRING_APPLICATION_JSON environment variable.
default: ""
jvm-config:
type: string
description: >
JVM configuration that will be passed to the Spring Boot application
as JAVA_TOOL_OPTIONS environment variable.
default: ""
ingress-hostname:
type: string
description: >
Override the default hostname (charm app name) for the ingress to listen on.
default: ""
ingress-strip-url-prefix:
type: string
description: |
Tell the ingress to strip url prefix before passing the request to the Spring Boot application.
For example, when set to "/foo":
request "example.com/foo" will be rewritten to "example.com/"
request "example.com/foo/" will be rewritten to "example.com/"
request "example.com/foo/bar" will be rewritten to "example.com/bar"
default: ""