forked from Oefenweb/ansible-tinyproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_default.yml
More file actions
27 lines (26 loc) · 734 Bytes
/
_default.yml
File metadata and controls
27 lines (26 loc) · 734 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
# vars file
---
tinyproxy_configuration_file: /etc/tinyproxy/tinyproxy.conf
tinyproxy_tinyproxy_conf_preset:
- |
User nobody
Group nogroup
Port {{ tinyproxy_port }}
Timeout 600
DefaultErrorFile "/usr/share/tinyproxy/default.html"
StatFile "/usr/share/tinyproxy/stats.html"
Logfile "/var/log/tinyproxy/tinyproxy.log"
LogLevel Info
PidFile "/var/run/tinyproxy/tinyproxy.pid"
MaxClients 100
MinSpareServers 5
MaxSpareServers 20
StartServers 10
MaxRequestsPerChild 0
{% for allow in tinyproxy_allow %}
Allow {{ allow }}
{% endfor %}
ViaProxyName "tinyproxy"
{% for connect_port in tinyproxy_connect_port %}
ConnectPort {{ connect_port }}
{% endfor %}