-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml.example
More file actions
48 lines (39 loc) · 1.46 KB
/
config.toml.example
File metadata and controls
48 lines (39 loc) · 1.46 KB
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
44
45
46
47
48
# dlna-proxy configuration file
#
# Usage: dlna-proxy -c /path/to/config.toml
# URL pointing to the remote DLNA server's root XML description (required)
description_url = "http://192.168.1.100:8200/rootDesc.xml"
# Interval (in seconds) at which we broadcast ssdp:alive on behalf of the remote server
# Default: 895
period = 895
# Local IP:PORT where to bind the TCP proxy
# When set, dlna-proxy will proxy TCP connections to the remote DLNA server
# and rewrite the description_url to point to this proxy address
# Optional - if not set, no proxy is started
#proxy = "192.168.1.50:8200"
# Network interface on which to broadcast SSDP messages
# Requires root or CAP_NET_RAW capability
# Optional - if not set, broadcasts on all interfaces
#iface = "eth0"
# Wait for remote server to become available at startup
# Value is the retry interval in seconds
# Optional - if not set, dlna-proxy will exit if the server is unavailable at startup
# Default when enabled: 30
#wait = 30
# HTTP connect timeout (in seconds) for fetching XML description from remote server
# Default: 2
#connect_timeout = 2
# TCP connect timeout (in seconds) for proxy connections to origin server
# Only applies when proxy is enabled
# Default: 10
#proxy_timeout = 10
# TCP read/write timeout (in seconds) for active proxy streams
# Only applies when proxy is enabled
# Default: 300 (5 minutes)
#stream_timeout = 300
# Verbosity level:
# 0 = Warn (default)
# 1 = Info
# 2 = Debug
# 3+ = Trace
verbose = 1