File: zurl.conf.example

package info (click to toggle)
zurl 1.11.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,168 kB
  • sloc: cpp: 11,041; ansic: 6,749; python: 247; sh: 129; makefile: 15
file content (43 lines) | stat: -rw-r--r-- 815 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[General]
# instance routing id. keep blank for random. set for better error recovery
instance_id=

# bind PULL for initiating a request
in_spec=ipc:///tmp/zurl-in

# bind DEALER for continuing a request
in_stream_spec=ipc:///tmp/zurl-in-stream

# bind PUB for responding
out_spec=ipc:///tmp/zurl-out

# bind ROUTER for handling non-streamed requests/responses
in_req_spec=ipc:///tmp/zurl-req

# ipc permissions (octal)
#ipc_file_mode=777

# default policy, one of "allow" or "deny"
defpolicy=allow

# hosts to allow
allow=

# hosts to deny
#deny=127/8,10/8,172.16/12,192.168/16

# whether to allow ipv6
allow_ipv6=false

# worker count
max_open_requests=2000

# input buffer size per request
buffer_size=200000

# expiration time (in seconds) for inactive requests
timeout=600

# advanced
in_hwm=1000
out_hwm=1000