zmq-fileserver/config/config.ini

22 lines
592 B
INI
Raw Permalink Normal View History

2020-06-20 19:04:10 +02:00
[server]
; %ROOT_DIR% is replaced by the actual directory of the package
storage_dir = %ROOT_DIR%/var/storage
query_dsn[] = ipc:///tmp/storage_server_query.ipc
query_dsn[] = tcp://0.0.0.0:5678
command_dsn[] = ipc:///tmp/storage_server_command.ipc
2020-06-21 01:58:06 +02:00
command_dsn[] = tcp://0.0.0.0:5679
2020-06-20 19:04:10 +02:00
[command]
2020-06-21 01:58:06 +02:00
; Use TCP - in order to use IPC, create a volume in docker-compose.yaml
;dsn = ipc:///tmp/storage_server_command.ipc
dsn = tcp://localhost:5679
2020-06-20 19:04:10 +02:00
[query]
2020-06-21 01:58:06 +02:00
; Use TCP - in order to use IPC, create a volume in docker-compose.yaml
;dsn = ipc:///tmp/storage_server_query.ipc
2020-06-20 19:04:10 +02:00
dsn = tcp://localhost:5678