-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.sample.toml
More file actions
31 lines (25 loc) · 911 Bytes
/
config.sample.toml
File metadata and controls
31 lines (25 loc) · 911 Bytes
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
# Postman service configuration file.
[service]
# The service name might be shared among all instances
# of the same service.
name = "my-service"
[broker]
# Connection string. This must include the username
# and password (if any), the host and the port.
uri = "amqp://guest:guest@localhost:5672"
[http]
listen_to_hosts = [] # Empty list will listen to all hosts
# If you need just to listen to a single or a few IP addresses:
#listen_to_hosts = ["127.0.0.1", "<otherip>"]
listen_port = 8130
# We'll forward all incoming requests as HTTP calls to this host.
fwd_host = "http://localhost:8000"
[dashboard]
enabled = true
listen_to_hosts = [] # Empty list will listen to all hosts
# If you need just to listen to a single or a few IP addresses:
#listen_to_hosts = ["127.0.0.1", "<otherip>"]
listen_port = 18130
[message]
# Time in seconds we will wait for the response of the message.
#receive_timeout = 10