Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,29 @@ It contains one secret per line in `KEY=value` form.
. Author your custom `{my-app-config-file}` file.
This is the main {product-short} configuration file.
+
You can start with an empty file to use the default configuration.
+
The `baseUrl` field is mandatory in your `{my-app-config-file}` file to ensure proper functionality of {product-short}. You must specify the `baseUrl` in both the `app` and `backend` sections to avoid errors during initialization.

.Configuring the `baseUrl` in `{my-app-config-file}`
====
[source,yaml,subs="+attributes,+quotes"]
----
app:
title: {product}
baseUrl: {my-product-url}

backend:
auth:
externalAccess:
- type: legacy
options:
subject: legacy-default-config
secret: "${BACKEND_SECRET}"
baseUrl: {my-product-url}
cors:
origin: {my-product-url}
----
====

Optionally, enter your configuration such as:

* link:{authentication-book-url}[{authentication-book-title}].
Expand Down
Loading