102 lines
3.4 KiB
Properties
102 lines
3.4 KiB
Properties
|
|
#
|
||
|
|
# Copyright (c) 2015 Bosch Software Innovations GmbH and others.
|
||
|
|
#
|
||
|
|
# All rights reserved. This program and the accompanying materials
|
||
|
|
# are made available under the terms of the Eclipse Public License v1.0
|
||
|
|
# which accompanies this distribution, and is available at
|
||
|
|
# http://www.eclipse.org/legal/epl-v10.html
|
||
|
|
#
|
||
|
|
|
||
|
|
|
||
|
|
#########################################################################################
|
||
|
|
# PUBLIC configuration, i.e. can be changed by users at runtime (defaults provided here)
|
||
|
|
#########################################################################################
|
||
|
|
## Configuration for RabbitMQ communication
|
||
|
|
hawkbit.device.simulator.amqp.receiverConnectorQueueFromSp=sp_connector_receiver
|
||
|
|
hawkbit.device.simulator.amqp.deadLetterQueue=simulator_deadletter
|
||
|
|
hawkbit.device.simulator.amqp.deadLetterExchange=simulator.deadletter
|
||
|
|
hawkbit.device.simulator.amqp.senderForSpExchange=simulator.replyTo
|
||
|
|
|
||
|
|
|
||
|
|
## Configuration for RabbitMQ integration
|
||
|
|
spring.rabbitmq.username=guest
|
||
|
|
spring.rabbitmq.password=guest
|
||
|
|
spring.rabbitmq.virtualHost=/
|
||
|
|
spring.rabbitmq.host=localhost
|
||
|
|
spring.rabbitmq.port=5672
|
||
|
|
spring.rabbitmq.dynamic=true
|
||
|
|
|
||
|
|
|
||
|
|
#disable expose jmx beans
|
||
|
|
spring.jmx.enabled=false
|
||
|
|
# the context path of the monitor spring actuator which offers following endpoints
|
||
|
|
# /autoconfig, /beans, /configprops, /dump, /env, /health, /info, /metrics, /mappings, /trace
|
||
|
|
management.context-path=/system
|
||
|
|
management.security.enabled=true
|
||
|
|
management.security.sessions=stateless
|
||
|
|
# ENDPOINTS
|
||
|
|
endpoints.autoconfig.id=autoconfig
|
||
|
|
endpoints.autoconfig.sensitive=true
|
||
|
|
endpoints.autoconfig.enabled=false
|
||
|
|
endpoints.beans.id=beans
|
||
|
|
endpoints.beans.sensitive=true
|
||
|
|
endpoints.beans.enabled=false
|
||
|
|
endpoints.configprops.id=configprops
|
||
|
|
endpoints.configprops.sensitive=true
|
||
|
|
endpoints.configprops.enabled=true
|
||
|
|
#endpoints.configprops.keys-to-sanitize=password,secret,key # suffix or regex
|
||
|
|
endpoints.dump.id=dump
|
||
|
|
endpoints.dump.sensitive=true
|
||
|
|
endpoints.dump.enabled=false
|
||
|
|
endpoints.env.id=env
|
||
|
|
endpoints.env.sensitive=true
|
||
|
|
endpoints.env.enabled=true
|
||
|
|
#endpoints.env.keys-to-sanitize=password,secret,key # suffix or regex
|
||
|
|
endpoints.health.id=health
|
||
|
|
endpoints.health.sensitive=true
|
||
|
|
endpoints.health.enabled=true
|
||
|
|
endpoints.info.id=info
|
||
|
|
endpoints.info.sensitive=true
|
||
|
|
endpoints.info.enabled=true
|
||
|
|
endpoints.metrics.id=metrics
|
||
|
|
endpoints.metrics.sensitive=true
|
||
|
|
endpoints.metrics.enabled=true
|
||
|
|
endpoints.shutdown.id=shutdown
|
||
|
|
endpoints.shutdown.sensitive=true
|
||
|
|
endpoints.shutdown.enabled=false
|
||
|
|
endpoints.trace.id=trace
|
||
|
|
endpoints.trace.sensitive=true
|
||
|
|
endpoints.trace.enabled=true
|
||
|
|
|
||
|
|
# HEALTH INDICATORS (previously health.*)
|
||
|
|
management.health.db.enabled=true
|
||
|
|
management.health.diskspace.enabled=true
|
||
|
|
management.health.mongo.enabled=true
|
||
|
|
management.health.rabbit.enabled=true
|
||
|
|
management.health.redis.enabled=false
|
||
|
|
management.health.solr.enabled=false
|
||
|
|
management.health.diskspace.path=.
|
||
|
|
management.health.diskspace.threshold=10485760
|
||
|
|
management.health.status.order=DOWN, OUT_OF_SERVICE, UNKNOWN, UP
|
||
|
|
|
||
|
|
# SECURITY (SecurityProperties)
|
||
|
|
security.user.name=${BASIC_USERNAME:admin}
|
||
|
|
security.user.password=${BASIC_PASSWORD:admin}
|
||
|
|
security.user.role=USER
|
||
|
|
security.require-ssl=false
|
||
|
|
security.enable-csrf=false
|
||
|
|
security.basic.enabled=true
|
||
|
|
security.basic.realm=DeviceSimulator
|
||
|
|
security.basic.path= /system/**
|
||
|
|
security.basic.authorize-mode=ROLE
|
||
|
|
security.filter-order=0
|
||
|
|
security.headers.xss=false
|
||
|
|
security.headers.cache=false
|
||
|
|
security.headers.frame=false
|
||
|
|
security.headers.content-type=false
|
||
|
|
security.headers.hsts=all
|
||
|
|
security.sessions=stateless
|
||
|
|
security.ignored=
|
||
|
|
|
||
|
|
server.port=8083
|