File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ galaxy_info:
1414 - trusty
1515 - xenial
1616 - bionic
17+ - focal
1718 - name : Debian
1819 versions :
1920 - jessie
Original file line number Diff line number Diff line change 1+ # vars file
2+ ---
3+ tinyproxy_configuration_file : /etc/tinyproxy/tinyproxy.conf
4+
5+ tinyproxy_tinyproxy_conf_preset :
6+ - |
7+ User tinyproxy
8+ Group tinyproxy
9+ Port {{ tinyproxy_port }}
10+ Timeout 600
11+ DefaultErrorFile "/usr/share/tinyproxy/default.html"
12+ StatFile "/usr/share/tinyproxy/stats.html"
13+ Logfile "/var/log/tinyproxy/tinyproxy.log"
14+ LogLevel Info
15+ PidFile "/run/tinyproxy/tinyproxy.pid"
16+ MaxClients 100
17+ MinSpareServers 5
18+ MaxSpareServers 20
19+ StartServers 10
20+ MaxRequestsPerChild 0
21+ {% for allow in tinyproxy_allow %}
22+ Allow {{ allow }}
23+ {% endfor %}
24+ ViaProxyName "tinyproxy"
25+ {% for connect_port in tinyproxy_connect_port %}
26+ ConnectPort {{ connect_port }}
27+ {% endfor %}
You can’t perform that action at this time.
0 commit comments