62473292fc
you can define additional hosts or subnets (default is to allow access from localhost) in svdrphosts.conf by creating a list variable vdr_svdrphosts - e.g. in host_vars/localhost or in group_vars/all: vdr_svdrphosts: - 192.168.0.0/24 also cleanup some of the structure in Manual.org and update Manual.html
21 lines
599 B
Django/Jinja
21 lines
599 B
Django/Jinja
{{ ansible_managed | comment }}
|
|
#
|
|
# svdrphosts This file describes a number of host addresses that
|
|
# are allowed to connect to the SVDRP port of the Video
|
|
# Disk Recorder (VDR) running on this system.
|
|
# Syntax:
|
|
#
|
|
# IP-Address[/Netmask]
|
|
#
|
|
|
|
127.0.0.1 # always accept localhost
|
|
#192.168.100.0/24 # any host on the local net
|
|
#204.152.189.113 # a specific host
|
|
#0.0.0.0/0 # any host on any net (USE THIS WITH CARE!)
|
|
|
|
{% if vdr_svdrphosts is defined %}
|
|
{% for host_or_subnet in vdr_svdrphosts %}
|
|
{{ host_or_subnet }}
|
|
{% endfor %}
|
|
{% endif %}
|