2016-01-21 13:18:55 +01:00
|
|
|
#
|
2023-09-14 11:03:20 +03:00
|
|
|
# Copyright (c) 2015 Bosch Software Innovations GmbH and others
|
2016-01-21 13:18:55 +01:00
|
|
|
#
|
2023-09-14 11:03:20 +03:00
|
|
|
# This program and the accompanying materials are made
|
|
|
|
|
# available under the terms of the Eclipse Public License 2.0
|
|
|
|
|
# which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: EPL-2.0
|
2016-01-21 13:18:55 +01:00
|
|
|
#
|
|
|
|
|
|
2016-09-20 10:36:03 +02:00
|
|
|
# User Security
|
2019-01-31 07:29:27 +01:00
|
|
|
spring.security.user.name=admin
|
|
|
|
|
spring.security.user.password={noop}admin
|
|
|
|
|
spring.main.allow-bean-definition-overriding=true
|
2016-09-20 10:36:03 +02:00
|
|
|
|
2020-01-30 13:44:25 +01:00
|
|
|
# Http Encoding
|
|
|
|
|
server.servlet.encoding.charset=UTF-8
|
|
|
|
|
server.servlet.encoding.enabled=true
|
|
|
|
|
server.servlet.encoding.force=true
|
|
|
|
|
|
2016-05-03 18:34:16 +02:00
|
|
|
# DDI authentication configuration
|
2017-12-19 17:53:17 +01:00
|
|
|
hawkbit.server.ddi.security.authentication.anonymous.enabled=false
|
2021-01-22 14:54:07 +01:00
|
|
|
hawkbit.server.ddi.security.authentication.targettoken.enabled=false
|
|
|
|
|
hawkbit.server.ddi.security.authentication.gatewaytoken.enabled=false
|
2016-01-21 13:18:55 +01:00
|
|
|
|
2017-09-26 14:29:55 +02:00
|
|
|
# Optional events
|
|
|
|
|
hawkbit.server.repository.publish-target-poll-event=false
|
|
|
|
|
|
2016-05-03 18:34:16 +02:00
|
|
|
## Configuration for DMF/RabbitMQ integration
|
2016-02-25 17:59:46 +01:00
|
|
|
spring.rabbitmq.username=guest
|
|
|
|
|
spring.rabbitmq.password=guest
|
2019-01-31 07:29:27 +01:00
|
|
|
spring.rabbitmq.virtual-host=/
|
2016-02-25 17:59:46 +01:00
|
|
|
spring.rabbitmq.host=localhost
|
|
|
|
|
spring.rabbitmq.port=5672
|
2019-05-21 13:34:07 +02:00
|
|
|
|
2020-03-03 11:01:31 +03:00
|
|
|
# Define own users instead of default "admin" user:
|
2019-05-21 13:34:07 +02:00
|
|
|
#hawkbit.server.im.users[0].username=hawkbit
|
|
|
|
|
#hawkbit.server.im.users[0].password={noop}isAwesome!
|
|
|
|
|
#hawkbit.server.im.users[0].firstname=Eclipse
|
|
|
|
|
#hawkbit.server.im.users[0].lastname=HawkBit
|
|
|
|
|
#hawkbit.server.im.users[0].permissions=ALL
|
2019-06-24 17:19:38 +02:00
|
|
|
|
|
|
|
|
# Enable CORS and specify the allowed origins:
|
|
|
|
|
#hawkbit.server.security.cors.enabled=true
|
|
|
|
|
#hawkbit.server.security.cors.allowedOrigins=http://localhost
|
2023-09-13 10:40:31 +03:00
|
|
|
|
|
|
|
|
# Swagger Configuration
|
|
|
|
|
#springdoc.swagger-ui.path=/update-server-documentation
|
|
|
|
|
#springdoc.api-docs.path=/update-server-api-docs
|
|
|
|
|
springdoc.show-oauth2-endpoints=true
|
|
|
|
|
springdoc.api-docs.version=openapi_3_0
|
|
|
|
|
springdoc.show-login-endpoint=true
|
2023-09-25 13:44:55 +03:00
|
|
|
springdoc.packages-to-scan=org.eclipse.hawkbit.mgmt,org.eclipse.hawkbit.ddi
|
2023-09-13 10:40:31 +03:00
|
|
|
springdoc.swagger-ui.oauth2RedirectUrl=/login/oauth2/code/suite
|
|
|
|
|
springdoc.paths-to-exclude=/system/**
|