-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Frank Jogeleit <frank.jogeleit@web.de>
- Loading branch information
Showing
5 changed files
with
121 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# App Configuration | ||
|
||
## Logging | ||
|
||
Configure additional request logging, output format and log level. | ||
|
||
::: code-group | ||
|
||
```yaml [values.yaml] | ||
ui: | ||
logging: | ||
# -- enables external api request logging | ||
api: false | ||
# -- enables server access logging | ||
server: false | ||
# -- log encoding | ||
# possible encodings are console and json | ||
encoding: console | ||
# -- log level | ||
# default info | ||
logLevel: 0 | ||
``` | ||
```yaml [config.yaml] | ||
logging: | ||
# -- Enables external api request logging | ||
api: false | ||
# -- Enables server access logging | ||
server: false | ||
# -- Log encoding | ||
# possible encodings are console and json | ||
encoding: console | ||
# -- Log level | ||
# default info | ||
logLevel: 0 | ||
``` | ||
::: | ||
## Server | ||
Customize server related configurations | ||
::: code-group | ||
```yaml [values.yaml] | ||
ui: | ||
server: | ||
# -- Application port | ||
port: 8080 | ||
# -- Enables CORS header | ||
cors: true | ||
# -- Overwrites Request Host with Proxy Host and adds `X-Forwarded-Host` and `X-Origin-Host` headers | ||
overwriteHost: true | ||
``` | ||
```yaml [values.yaml] | ||
server: | ||
# -- Application port | ||
port: 8080 | ||
# -- Enabled CORS header | ||
cors: true | ||
# -- Overwrites Request Host with Proxy Host and adds `X-Forwarded-Host` and `X-Origin-Host` headers | ||
overwriteHost: true | ||
``` | ||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters