diff --git a/hawkbit-ddi/hawkbit-ddi-server/src/main/resources/application.properties b/hawkbit-ddi/hawkbit-ddi-server/src/main/resources/application.properties index 8d8a6bf64..0aa89d47a 100644 --- a/hawkbit-ddi/hawkbit-ddi-server/src/main/resources/application.properties +++ b/hawkbit-ddi/hawkbit-ddi-server/src/main/resources/application.properties @@ -32,7 +32,6 @@ server.servlet.encoding.enabled=true server.servlet.encoding.force=true # DDI authentication configuration -hawkbit.server.ddi.security.authentication.anonymous.enabled=false hawkbit.server.ddi.security.authentication.targettoken.enabled=false hawkbit.server.ddi.security.authentication.gatewaytoken.enabled=false diff --git a/hawkbit-monolith/hawkbit-update-server/src/main/resources/application.properties b/hawkbit-monolith/hawkbit-update-server/src/main/resources/application.properties index 6aa63f8dc..765523ed6 100644 --- a/hawkbit-monolith/hawkbit-update-server/src/main/resources/application.properties +++ b/hawkbit-monolith/hawkbit-update-server/src/main/resources/application.properties @@ -34,7 +34,6 @@ server.servlet.encoding.enabled=true server.servlet.encoding.force=true # DDI authentication configuration -hawkbit.server.ddi.security.authentication.anonymous.enabled=false hawkbit.server.ddi.security.authentication.targettoken.enabled=false hawkbit.server.ddi.security.authentication.gatewaytoken.enabled=false diff --git a/site/content/concepts/authentication.md b/site/content/concepts/authentication.md index d6b22f1da..31e466e89 100644 --- a/site/content/concepts/authentication.md +++ b/site/content/concepts/authentication.md @@ -69,20 +69,6 @@ The additional activation for the individual tenant: ![Enable Gateway Token](../../images/security/gatewayToken.png) -#### Anonymous access - -Here we offer general anonymous access for all targets ( -see [DdiSecurityProperties](https://github.com/eclipse-hawkbit/hawkbit/blob/master/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/security/DdiSecurityProperties.java)) -which we consider not really sufficient for a production system but it might come in handy to get a project started in -the beginning. - -However, anonymous download on the other side might be interesting even in production for scenarios where the artifact -itself is already encrypted. - -The activation for the individual tenant: - -![Enable Anonymous Download](../../images/security/anonymousDownload.png) - ### Certificate Authentication by Reverse Proxy hawkBit offers a certificate-based authentication mechanism, also known as mutual TLS (mTLS), which eliminates the need diff --git a/site/src/main/resources/application.properties b/site/src/main/resources/application.properties index 3de2b4b07..25d6a627b 100644 --- a/site/src/main/resources/application.properties +++ b/site/src/main/resources/application.properties @@ -21,7 +21,6 @@ server.servlet.encoding.enabled=true server.servlet.encoding.force=true # DDI authentication configuration -hawkbit.server.ddi.security.authentication.anonymous.enabled=false hawkbit.server.ddi.security.authentication.targettoken.enabled=false hawkbit.server.ddi.security.authentication.gatewaytoken.enabled=false diff --git a/site/static/images/security/anonymousDownload.png b/site/static/images/security/anonymousDownload.png deleted file mode 100644 index d5eebb1d7..000000000 Binary files a/site/static/images/security/anonymousDownload.png and /dev/null differ