...
storage:
binary:
provider: local
dataPath: other
Configuration parameters
...
storage.binary.provider
(Optional, String) If given, must be local
.
...
Keep in mind that SFTP is known to be slow. Use it only as last resource
Configuration parameters
...
storage.binary.provider
(Required, String) Must be sftp
.
...
| Property | Type | Default | Description | |------------------------|:-------:|:------------:|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | host
| String | localhost | The RabbitMQ host to connect to. | | port
| Integer | 5672 | The port to connect to. | | user
| String | | The user in case authentication is required | | password
| String | | The password for the user | | virtualHost
| String | / | The RabbitMQ virtual host to connect to. | | uri
| String | | The complete RabbitMQ url. For example [amqps://user:pass@localhost:5671/%2f]. Setting this property will overwrite host
, port
, user
, password
and virtualHost
. | | exchangeName
| String | pdp.exchange | The name of the exchange to send the messages to. | | tls.enabled
| Boolean | false | Whether TLS is enabled or not on RabbitMQ. This assumes the required certificates come from a known CA or have already been registered into the JVM cacerts keystore. | | tls.tlsVersion
| String | TLSv1.2 | TLS version being used. | | tls.p12KeyPath
| String | | Path to the P12 key. | | tls.p12KeyPassphrase
| String | | Passphrase for the P12 key. |####RabbitMQ
RabbitMQ Producer Configuration
The following are the RabbitMQ specific configuration properties for a producer.
...