File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1414 rateLimiter :
1515 windowMs : 60000 # 1 minute
1616 max : 500 # limit each IP to 500 requests per windowMs
17+ # Trust X-FORWARDED-* headers from proxies (default = true)
18+ useProxies : true
1719
1820# The REST API server settings
1921# NOTE: these settings define which (publicly available) REST API to use. They are usually
@@ -135,9 +137,6 @@ languages:
135137 - code : lv
136138 label : Latviešu
137139 active : true
138- - code : hi
139- label : Hindi
140- active : true
141140 - code : hu
142141 label : Magyar
143142 active : true
@@ -165,6 +164,9 @@ languages:
165164 - code : bn
166165 label : বাংলা
167166 active : true
167+ - code : hi
168+ label : हिंदी
169+ active : true
168170 - code : el
169171 label : Ελληνικά
170172 active : true
@@ -288,3 +290,9 @@ mediaViewer:
288290info :
289291 enableEndUserAgreement : true
290292 enablePrivacyStatement : true
293+
294+ # Whether to enable Markdown (https://commonmark.org/) and MathJax (https://www.mathjax.org/)
295+ # display in supported metadata fields. By default, only dc.description.abstract is supported.
296+ markdown :
297+ enabled : false
298+ mathjax : false
Original file line number Diff line number Diff line change @@ -370,6 +370,8 @@ export class DefaultAppConfig implements AppConfig {
370370 enablePrivacyStatement : true
371371 } ;
372372
373+ // Whether to enable Markdown (https://commonmark.org/) and MathJax (https://www.mathjax.org/)
374+ // display in supported metadata fields. By default, only dc.description.abstract is supported.
373375 markdown : MarkdownConfig = {
374376 enabled : false ,
375377 mathjax : false ,
You can’t perform that action at this time.
0 commit comments