2016-01-21 13:18:55 +01:00
|
|
|
#
|
|
|
|
|
# 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
|
2016-01-21 13:42:38 +01:00
|
|
|
hawkbit.device.simulator.amqp.receiverConnectorQueueFromSp=simulator_receiver
|
2016-01-21 13:18:55 +01:00
|
|
|
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
|
2016-01-21 17:56:26 +01:00
|
|
|
spring.rabbitmq.listener.prefetch=100
|
2016-01-21 13:18:55 +01:00
|
|
|
|
|
|
|
|
# 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
|
2016-01-21 13:42:38 +01:00
|
|
|
security.basic.path= /**
|
2016-01-21 13:18:55 +01:00
|
|
|
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
|
2016-01-21 17:56:26 +01:00
|
|
|
security.ignored=/VAADIN/**
|
2016-01-21 13:18:55 +01:00
|
|
|
|
|
|
|
|
server.port=8083
|