36 lines
909 B
TOML
36 lines
909 B
TOML
|
# Apiary config file
|
||
|
[Store]
|
||
|
# Type of store to use
|
||
|
# Must be "memory" or "postgres"
|
||
|
# Default: "memory"
|
||
|
Type = "memory"
|
||
|
|
||
|
[Store.Postgres]
|
||
|
# Connection string for postgres
|
||
|
# Must be set if using Store.Type = "postgres"
|
||
|
DSN = "postgresql://film:film@10.69.10.130:5432/film?sslmode=disable"
|
||
|
[Honeypot]
|
||
|
# Path to SSH host key
|
||
|
# If empty, a new one will be generated each time the service starts
|
||
|
# Default: ""
|
||
|
HostKeyPath = ""
|
||
|
# Log level for SSH Honeypot
|
||
|
# Must be either "DEBUG", "INFO", "WARN", "ERROR", "FATAL", "NONE"
|
||
|
# Default: "INFO"
|
||
|
LogLevel = "INFO"
|
||
|
# Address and port to listen to
|
||
|
# Default: ":2222"
|
||
|
ListenAddr = ":2222"
|
||
|
|
||
|
[Frontend]
|
||
|
# Log level for SSH Honeypot
|
||
|
# Must be either "DEBUG", "INFO", "WARN", "ERROR", "FATAL", "NONE"
|
||
|
# Default: "INFO"
|
||
|
LogLevel = "INFO"
|
||
|
# Enable access logging
|
||
|
# Default: true
|
||
|
AccessLogEnable = true
|
||
|
# Address and port to listen to
|
||
|
# Default: ":8080"
|
||
|
ListenAddr = ":8080"
|