Skip to content

Latest commit

 

History

History
84 lines (63 loc) · 2.38 KB

README.md

File metadata and controls

84 lines (63 loc) · 2.38 KB

tinyproxy

CI Ansible Galaxy

Set up tinyproxy in Debian-like systems.

Requirements

None

Variables

  • tinyproxy_install: [default: []]: Additional packages to install

  • tinyproxy_tinyproxy_conf: [see: defaults/main.yml]: List of lines to be added to /etc/tinyproxy.conf

  • tinyproxy_port: [default: 8888]: The port which tinyproxy will listen on

  • tinyproxy_allow: [default: ["{{ ansible_lo['ipv4']['address'] }}"]]: Customization of authorization controls. If there are any access controls then the default action is to DENY. Otherwise, the default action is ALLOW. The order of the controls are important

  • tinyproxy_connect_port: [default: [443, 563]]: This is a list of ports allowed when the CONNECT method is used. To disable the CONNECT method altogether, set the value to 0. If no item is found, all ports are allowed

Dependencies

None

Example

Simple
---
- hosts: all
  roles:
    - oefenweb.tinyproxy
Advance
---
- hosts: all
  roles:
    - oefenweb.tinyproxy
  vars:
    tinyproxy_tinyproxy_conf:
      - |
        User nobody
        Group nogroup
        Port {{ tinyproxy_port }}
        Timeout 666
        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 %}
    tinyproxy_port: 3128
    tinyproxy_allow:
      - "{{ ansible_lo['ipv4']['address'] }}"
      - "{{ ansible_default_ipv4['address'] }}"

License

MIT

Author Information

Mischa ter Smitten

Feedback, bug-reports, requests, ...

Are welcome!