Sync config.example.yml with default-app-config for 7.4

This commit is contained in:
Tim Donohue
2022-10-06 12:20:37 -05:00
parent 5728f35f46
commit cebf2df4d2
2 changed files with 13 additions and 3 deletions

View File

@@ -14,6 +14,8 @@ ui:
rateLimiter:
windowMs: 60000 # 1 minute
max: 500 # limit each IP to 500 requests per windowMs
# Trust X-FORWARDED-* headers from proxies (default = true)
useProxies: true
# The REST API server settings
# NOTE: these settings define which (publicly available) REST API to use. They are usually
@@ -135,9 +137,6 @@ languages:
- code: lv
label: Latviešu
active: true
- code: hi
label: Hindi
active: true
- code: hu
label: Magyar
active: true
@@ -165,6 +164,9 @@ languages:
- code: bn
label: বাংলা
active: true
- code: hi
label: हिंदी
active: true
- code: el
label: Ελληνικά
active: true
@@ -288,3 +290,9 @@ mediaViewer:
info:
enableEndUserAgreement: true
enablePrivacyStatement: true
# Whether to enable Markdown (https://commonmark.org/) and MathJax (https://www.mathjax.org/)
# display in supported metadata fields. By default, only dc.description.abstract is supported.
markdown:
enabled: false
mathjax: false

View File

@@ -370,6 +370,8 @@ export class DefaultAppConfig implements AppConfig {
enablePrivacyStatement: true
};
// Whether to enable Markdown (https://commonmark.org/) and MathJax (https://www.mathjax.org/)
// display in supported metadata fields. By default, only dc.description.abstract is supported.
markdown: MarkdownConfig = {
enabled: false,
mathjax: false,