{"id":21459288,"url":"https://github.com/shazi7804/puppet-tinyproxy","last_synced_at":"2026-05-19T05:34:45.546Z","repository":{"id":57664838,"uuid":"92935884","full_name":"shazi7804/puppet-tinyproxy","owner":"shazi7804","description":"The tinyproxy puppet module","archived":false,"fork":false,"pushed_at":"2017-08-24T06:53:07.000Z","size":32,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-24T02:02:46.823Z","etag":null,"topics":["puppet","tinyproxy"],"latest_commit_sha":null,"homepage":"https://forge.puppet.com/shazi7804/tinyproxy","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shazi7804.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-05-31T10:42:33.000Z","updated_at":"2017-07-05T02:31:06.000Z","dependencies_parsed_at":"2022-09-14T21:41:12.842Z","dependency_job_id":null,"html_url":"https://github.com/shazi7804/puppet-tinyproxy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shazi7804%2Fpuppet-tinyproxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shazi7804%2Fpuppet-tinyproxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shazi7804%2Fpuppet-tinyproxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shazi7804%2Fpuppet-tinyproxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shazi7804","download_url":"https://codeload.github.com/shazi7804/puppet-tinyproxy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243971200,"owners_count":20376784,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["puppet","tinyproxy"],"created_at":"2024-11-23T06:28:21.753Z","updated_at":"2025-10-19T11:18:58.844Z","avatar_url":"https://github.com/shazi7804.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tinyproxy\n[![Build Status](https://travis-ci.org/shazi7804/puppet-tinyproxy.svg?branch=master)](https://travis-ci.org/shazi7804/puppet-tinyproxy) [![Puppet Forge](https://img.shields.io/puppetforge/dt/shazi7804/tinyproxy.svg?style=flat-square)](https://forge.puppet.com/shazi7804/tinyproxy) [![Puppet Forge](https://img.shields.io/puppetforge/v/shazi7804/tinyproxy.svg?style=flat-square)](https://forge.puppet.com/shazi7804/tinyproxy)\n\n\n#### Table of Contents\n\n1. [Description](#description)\n1. [Setup - The basics of getting started with tinyproxy](#setup)\n    * [Beginning with tinyproxy](#beginning-with-tinyproxy)\n1. [Usage - Configuration options and additional functionality](#usage)\n1. [Reference - An under-the-hood peek at what the module is doing and how](#reference)\n1. [Limitations - OS compatibility, etc.](#limitations)\n1. [Development - Guide for contributing to the module](#development)\n\n## Description\n\nThe aws agent module installs, configures, and manages the tinyproxy service across a range of operating systems and distributions.\n\n## Setup\n\n### Beginning with tinyproxy\n\n`include '::tinyproxy'` is enough to get you up and running.\n\n## Usage\n\nAll parameters for the ntp module are contained within the main `::tinyproxy` class, so for any function of the module, set the options you want. See the common usages below for examples.\n\n### Install and enable tinyproxy\n\n```puppet\ninclude '::tinyproxy'\n```\n\n### Configuring general\n\n```puppet\nclass { '::tinyproxy':\n  port              =\u003e 3128,\n  allow_hosts       =\u003e ['192.168.0.0/24','172.16.0.0/24'],\n  max_clients       =\u003e 128,\n  max_spare_servers =\u003e 256,\n  min_spare_servers =\u003e 64,\n\n}\n```\n\n### Configuring white list\n\n```puppet\nclass { '::tinyproxy':\n  filter_default_deny =\u003e true,\n  filter_file         =\u003e '/etc/tinyproxy/filter.conf',\n  filter_extended     =\u003e true\n}\n```\n\n```puppet\nclass { '::tinyproxy::filter':\n  filters =\u003e ['^apt\\.puppetlabs\\.com$',\n              '^github\\.com$',]\n}\n```\n\n## Reference\n\n### Classes\n\n#### Public classes\n\n* tinyproxy: Main class, includes all other classes.\n\n#### Private classes\n\n* tinyproxy::install: Handles the packages.\n* tinyproxy::config: Handles the config.\n* tinyproxy::filter: Handles the filter list.\n* tinyproxy::service: Handles the service.\n\n## Limitations\n\nThis module has been tested platform on:\n\n* Red Hat Enterprise Linux (RHEL) 6, 7\n* CentOS 6, 7\n* Debian 6, 7\n* Ubuntu 16.04\n\n## Development\n\nPuppet modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. Please follow our guidelines when contributing changes.\n\nFor more information, see our [module contribution guide.](https://docs.puppetlabs.com/forge/contributing.html)\n\n### Contributors\n\nTo see who's already involved, see the [list of contributors.](https://github.com/puppetlabs/puppetlabs-ntp/graphs/contributors)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshazi7804%2Fpuppet-tinyproxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshazi7804%2Fpuppet-tinyproxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshazi7804%2Fpuppet-tinyproxy/lists"}