mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2024-11-25 00:53:43 +00:00
27 lines
625 B
YAML
27 lines
625 B
YAML
%YAML 1.2
|
|
---
|
|
backend_name: postgresql
|
|
postgresql_settings:
|
|
connection:
|
|
username: your_username
|
|
password: your_password
|
|
dbname: dindexer
|
|
port: 5432
|
|
address: 200.100.200.100
|
|
|
|
redis_settings:
|
|
connection:
|
|
address: "/var/run/redis/redis.sock"
|
|
port: 6379
|
|
database: 1
|
|
sock_mode: true
|
|
|
|
script_paths:
|
|
- /home/michele/dev/build/dindexer/debug/src/backends/redis/lua
|
|
- /home/michele/dev/build/dindexer/release/src/backends/redis/lua
|
|
|
|
sqlite_settings:
|
|
connection:
|
|
path: /home/michele/dev/build/dindexer/dindexer.db3
|
|
|
|
backend_paths: /home/michele/dev/build/dindexer/debug/src/backends
|