-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Forgot to add config file contents, use proper path for docker volume…
… source
- Loading branch information
1 parent
dc9dcb7
commit 27d8cb9
Showing
2 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Change the configuration for your use case. | ||
service: | ||
# The proxy's listening ports, TLS and network interfaces. | ||
ports: | ||
4000: { } | ||
# The proxy's management API listening ports, TLS and network interfaces. | ||
manage: | ||
4040: { } | ||
# Target Aerospike cluster and embedded client configuration. | ||
aerospike: | ||
seeds: | ||
- localhost: | ||
port: 3000 | ||
# Policy overrides for incoming transactions | ||
policy-overrides: | ||
batch-policy: | ||
total-timeout: 30_000 | ||
# | ||
# Only if security should be enabled. | ||
# | ||
security: | ||
credentials-store: | ||
type: file | ||
credentials-file: samples/credentials.yml | ||
auth-token: | ||
private-key: samples/tls/private_key.pem | ||
public-key: samples/tls/public_key.pem | ||
# The logging properties. | ||
logging: | ||
format: json | ||
file: /var/log/aerospike-proxy/aerospike-proxy.log | ||
enable-console-logging: true |