diff options
-rw-r--r-- | BKUOnline/src/main/webapp/WEB-INF/conf/configuration.xml | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/BKUOnline/src/main/webapp/WEB-INF/conf/configuration.xml b/BKUOnline/src/main/webapp/WEB-INF/conf/configuration.xml index 0929cb3e..030ba835 100644 --- a/BKUOnline/src/main/webapp/WEB-INF/conf/configuration.xml +++ b/BKUOnline/src/main/webapp/WEB-INF/conf/configuration.xml @@ -1,11 +1,22 @@ <?xml version="1.0" encoding="UTF-8"?> <MoccaConfiguration version="1.0"> <DataURLConnection> - <!-- - The maximum number of consecutive Security Layer requests received - from DataURL server before execution is aborted. - --> + <!-- + The maximum number of consecutive Security Layer requests received + from DataURL server before execution is aborted. + --> <MaxHops>50</MaxHops> + <!-- + A list of allowed DataURLs, separated by commas. + The entries are interpreted as regular expressions. + --> + <Whitelist> + <!-- + https://www\.formularservice\.gv\.at/BKU/.*, + https?://127\.0\.0\.1/.*, + https?://localhost/.* + --> + </Whitelist> </DataURLConnection> <!--SSL> <disableAllChecks>true</disableAllChecks> |