diff --git a/docs/source/downloads/advancedDevelopmentAuthentication.zip b/docs/source/downloads/advancedDevelopmentAuthentication.zip index a9b90da1..da224c9f 100644 Binary files a/docs/source/downloads/advancedDevelopmentAuthentication.zip and b/docs/source/downloads/advancedDevelopmentAuthentication.zip differ diff --git a/docs/source/downloads/advancedDevelopmentAuthenticationConsole.zip b/docs/source/downloads/advancedDevelopmentAuthenticationConsole.zip index 6d6638df..0bcc7798 100644 Binary files a/docs/source/downloads/advancedDevelopmentAuthenticationConsole.zip and b/docs/source/downloads/advancedDevelopmentAuthenticationConsole.zip differ diff --git a/docs/source/downloads/advancedDevelopmentDockerDevelJms.zip b/docs/source/downloads/advancedDevelopmentDockerDevelJms.zip index 0eaba0cd..eb2b1186 100644 Binary files a/docs/source/downloads/advancedDevelopmentDockerDevelJms.zip and b/docs/source/downloads/advancedDevelopmentDockerDevelJms.zip differ diff --git a/docs/source/downloads/advancedDevelopmentDockerDevelNoJms.zip b/docs/source/downloads/advancedDevelopmentDockerDevelNoJms.zip index e7bbd44c..c51bb621 100644 Binary files a/docs/source/downloads/advancedDevelopmentDockerDevelNoJms.zip and b/docs/source/downloads/advancedDevelopmentDockerDevelNoJms.zip differ diff --git a/docs/source/downloads/advancedDevelopmentDockerDevelPreJms.zip b/docs/source/downloads/advancedDevelopmentDockerDevelPreJms.zip index 089a8044..d840934e 100644 Binary files a/docs/source/downloads/advancedDevelopmentDockerDevelPreJms.zip and b/docs/source/downloads/advancedDevelopmentDockerDevelPreJms.zip differ diff --git a/docs/source/downloads/advancedDevelopmentIntegrationPatternsMessageId.zip b/docs/source/downloads/advancedDevelopmentIntegrationPatternsMessageId.zip index 565fa40a..d5cd0fa3 100644 Binary files a/docs/source/downloads/advancedDevelopmentIntegrationPatternsMessageId.zip and b/docs/source/downloads/advancedDevelopmentIntegrationPatternsMessageId.zip differ diff --git a/docs/source/downloads/advancedDevelopmentProperties.zip b/docs/source/downloads/advancedDevelopmentProperties.zip index da4b5082..fda4631c 100644 Binary files a/docs/source/downloads/advancedDevelopmentProperties.zip and b/docs/source/downloads/advancedDevelopmentProperties.zip differ diff --git a/docs/source/downloads/configurations/NewHorizons.zip b/docs/source/downloads/configurations/NewHorizons.zip index c92a1174..1e26658b 100644 Binary files a/docs/source/downloads/configurations/NewHorizons.zip and b/docs/source/downloads/configurations/NewHorizons.zip differ diff --git a/docs/source/downloads/configurations/NewHorizonsDatabase.zip b/docs/source/downloads/configurations/NewHorizonsDatabase.zip index b05d36c2..ed9c6b36 100644 Binary files a/docs/source/downloads/configurations/NewHorizonsDatabase.zip and b/docs/source/downloads/configurations/NewHorizonsDatabase.zip differ diff --git a/docs/source/downloads/configurations/NewHorizonsOnlyTableBooking.zip b/docs/source/downloads/configurations/NewHorizonsOnlyTableBooking.zip index c1f6c09d..11a82a37 100644 Binary files a/docs/source/downloads/configurations/NewHorizonsOnlyTableBooking.zip and b/docs/source/downloads/configurations/NewHorizonsOnlyTableBooking.zip differ diff --git a/docs/source/downloads/configurations/NewHorizonsValidate.zip b/docs/source/downloads/configurations/NewHorizonsValidate.zip index d5f5f71a..f9345530 100644 Binary files a/docs/source/downloads/configurations/NewHorizonsValidate.zip and b/docs/source/downloads/configurations/NewHorizonsValidate.zip differ diff --git a/docs/source/downloads/configurations/credentials.zip b/docs/source/downloads/configurations/credentials.zip index 61997660..a0a297ba 100644 Binary files a/docs/source/downloads/configurations/credentials.zip and b/docs/source/downloads/configurations/credentials.zip differ diff --git a/docs/source/downloads/configurations/forFrankConsole.zip b/docs/source/downloads/configurations/forFrankConsole.zip index 44be8284..d8b373b1 100644 Binary files a/docs/source/downloads/configurations/forFrankConsole.zip and b/docs/source/downloads/configurations/forFrankConsole.zip differ diff --git a/docs/source/downloads/configurations/forFrankConsole_2.zip b/docs/source/downloads/configurations/forFrankConsole_2.zip index fe93def7..47f8c60e 100644 Binary files a/docs/source/downloads/configurations/forFrankConsole_2.zip and b/docs/source/downloads/configurations/forFrankConsole_2.zip differ diff --git a/docs/source/downloads/configurations/hermesBridge.zip b/docs/source/downloads/configurations/hermesBridge.zip index 11613d89..51c36c5c 100644 Binary files a/docs/source/downloads/configurations/hermesBridge.zip and b/docs/source/downloads/configurations/hermesBridge.zip differ diff --git a/docs/source/downloads/extendLadybugTable.zip b/docs/source/downloads/extendLadybugTable.zip index 17fb0516..217009e8 100644 Binary files a/docs/source/downloads/extendLadybugTable.zip and b/docs/source/downloads/extendLadybugTable.zip differ diff --git a/docs/source/downloads/ladybug.zip b/docs/source/downloads/ladybug.zip index 57ec840f..a4851ac5 100644 Binary files a/docs/source/downloads/ladybug.zip and b/docs/source/downloads/ladybug.zip differ diff --git a/docs/source/downloads/sandbox/v01.zip b/docs/source/downloads/sandbox/v01.zip index c097dee1..3cf6f491 100644 Binary files a/docs/source/downloads/sandbox/v01.zip and b/docs/source/downloads/sandbox/v01.zip differ diff --git a/docs/source/snippets/Frank2Authentication/v515/allowAccessForGithubActions.md b/docs/source/snippets/Frank2Authentication/v515/allowAccessForGithubActions.md new file mode 100644 index 00000000..134362cc --- /dev/null +++ b/docs/source/snippets/Frank2Authentication/v515/allowAccessForGithubActions.md @@ -0,0 +1,16 @@ +```none{1, 2, 3} +# Allow access for GitHub Actions test, to check the server console does not have warnings +application.security.console.authentication.type=NONE + +# Define the available authenticators +application.security.http.authenticators=inMem + +# Configure the authenticator +application.security.http.authenticators.inMem.type=IN_MEMORY +application.security.http.authenticators.inMem.username=ADMIN +application.security.http.authenticators.inMem.password=PASSWORD1234 + +# Tell what should be secured +servlet.ApiListenerServlet.authenticator=inMem +servlet.ApiListenerServlet.securityRoles=IbisAdmin +``` diff --git a/docs/source/snippets/Frank2Authentication/v515/allowAccessForGithubActions.txt b/docs/source/snippets/Frank2Authentication/v515/allowAccessForGithubActions.txt new file mode 100644 index 00000000..1936fd1c --- /dev/null +++ b/docs/source/snippets/Frank2Authentication/v515/allowAccessForGithubActions.txt @@ -0,0 +1,17 @@ +.. code-block:: none + :emphasize-lines: 1, 2, 3 + + # Allow access for GitHub Actions test, to check the server console does not have warnings + application.security.console.authentication.type=NONE + + # Define the available authenticators + application.security.http.authenticators=inMem + + # Configure the authenticator + application.security.http.authenticators.inMem.type=IN_MEMORY + application.security.http.authenticators.inMem.username=ADMIN + application.security.http.authenticators.inMem.password=PASSWORD1234 + + # Tell what should be secured + servlet.ApiListenerServlet.authenticator=inMem + servlet.ApiListenerServlet.securityRoles=IbisAdmin diff --git a/srcSteps/Frank2Authentication/v515/meta.yml b/srcSteps/Frank2Authentication/v515/meta.yml index 1094b514..27178c32 100644 --- a/srcSteps/Frank2Authentication/v515/meta.yml +++ b/srcSteps/Frank2Authentication/v515/meta.yml @@ -9,7 +9,17 @@ new: 1 snippet: changePortsForGithubActions highlight: true +- file: + path: server/configurations/DeploymentSpecifics.properties + change: + - insert: 3 + snippet: allowAccessForGithubActions + highlight: true - snippet: name: changePortsForGithubActions markup: none - context: 50 \ No newline at end of file + context: 50 +- snippet: + name: allowAccessForGithubActions + markup: none + context: 50 diff --git a/srcSteps/Frank2Authentication/v515/server/configurations/DeploymentSpecifics.properties b/srcSteps/Frank2Authentication/v515/server/configurations/DeploymentSpecifics.properties index d8cd9ae7..f3b86226 100644 --- a/srcSteps/Frank2Authentication/v515/server/configurations/DeploymentSpecifics.properties +++ b/srcSteps/Frank2Authentication/v515/server/configurations/DeploymentSpecifics.properties @@ -1,3 +1,6 @@ +# Allow access for GitHub Actions test, to check the server console does not have warnings +application.security.console.authentication.type=NONE + # Define the available authenticators application.security.http.authenticators=inMem