mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2024-11-25 00:53:43 +00:00
Fix indentation and use sock for redis connections.
This commit is contained in:
parent
9987d2b97e
commit
40f98fb382
1 changed files with 15 additions and 13 deletions
28
dindexer.yml
28
dindexer.yml
|
@ -2,20 +2,22 @@
|
||||||
---
|
---
|
||||||
backend_name: postgresql
|
backend_name: postgresql
|
||||||
postgresql_settings:
|
postgresql_settings:
|
||||||
connection:
|
connection:
|
||||||
username: your_username
|
username: your_username
|
||||||
password: your_password
|
password: your_password
|
||||||
dbname: dindexer
|
dbname: dindexer
|
||||||
port: 5432
|
port: 5432
|
||||||
address: 200.100.200.100
|
address: 200.100.200.100
|
||||||
|
|
||||||
redis_settings:
|
redis_settings:
|
||||||
connection:
|
connection:
|
||||||
address: 200.100.200.100
|
address: "/var/run/redis/redis.sock"
|
||||||
port: 6379
|
port: 6379
|
||||||
|
database: 1
|
||||||
|
sock_mode: true
|
||||||
|
|
||||||
script_paths:
|
script_paths:
|
||||||
- /home/duckz/dev/build/dindexer/Debug/src/backends/redis/lua
|
- /home/michele/dev/build/dindexer/debug/src/backends/redis/lua
|
||||||
- /home/duckz/dev/build/dindexer/Release/src/backends/redis/lua
|
- /home/michele/dev/build/dindexer/release/src/backends/redis/lua
|
||||||
|
|
||||||
backend_paths: path to your build_dir/src/backend
|
backend_paths: /home/michele/dev/build/dindexer/debug/src/backends
|
||||||
|
|
Loading…
Reference in a new issue