mg
883dc870d4
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#280 Co-authored-by: mg <michael.grote@posteo.de> Co-committed-by: mg <michael.grote@posteo.de>
28 lines
883 B
Text
28 lines
883 B
Text
{{ file_header | default () }}
|
|
|
|
Nickname {{ tor_relay_name }}
|
|
ORPort {{ tor_or_port }}
|
|
ExitRelay 0
|
|
SocksPort {{ tor_socks_port }}
|
|
ControlSocket {{ tor_control_socket }}
|
|
ContactInfo {{ tor_contact_info }}
|
|
ControlPort {{ tor_control_port }}
|
|
CookieAuthentication 1
|
|
ExitPolicy reject *:*
|
|
|
|
{% if tor_ipv6 is sameas true %}
|
|
ORPort [{{hostvars[inventory_hostname]['ansible_default_ipv6']['address']}}]:{{ tor_or_port }}
|
|
ExitPolicy reject6 *:*
|
|
{% endif %}
|
|
|
|
{% if tor_bandwidth_rate is defined %}
|
|
BandwidthRate {{ tor_bandwidth_rate }}
|
|
{% endif %}
|
|
|
|
{% if tor_bandwidth_burst is defined %}
|
|
BandwidthBurst {{ tor_bandwidth_burst }}
|
|
{% endif %}
|
|
|
|
{% if tor_my_family is defined %}
|
|
MyFamily {{ tor_my_family }}
|
|
{% endif %}
|