- adapt readme.md to document new simulator rest-api - remove basic-auth from standard application properties and introduce an extra cloud-profile which includes basic-auth-security parameters for easier use locally - fix dialog for amount with 4 digit and comma charachter Signed-off-by: Michael Hirsch <michael.hirsch@bosch-si.com>
32 lines
1.2 KiB
Properties
32 lines
1.2 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=simulator_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
|
|
spring.rabbitmq.listener.prefetch=100
|
|
|
|
security.basic.enabled=false
|
|
server.port=8083
|