Tinyproxy · Example Payload

Tinyproxy Config Example

Example Tinyproxy daemon configuration for a small network deployment

Forward ProxyProxyHTTPNetworkingOpen Source

Tinyproxy Config Example is an example object payload from Tinyproxy, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

exampledescriptionconfiguration

Example Payload

tinyproxy-config-example.json Raw ↑
{
  "example": "Tinyproxy Configuration",
  "description": "Example Tinyproxy daemon configuration for a small network deployment",
  "configuration": {
    "port": 8888,
    "user": "tinyproxy",
    "group": "tinyproxy",
    "logFile": "/var/log/tinyproxy/tinyproxy.log",
    "logLevel": "Info",
    "pidFile": "/run/tinyproxy/tinyproxy.pid",
    "maxClients": 100,
    "minSpareServers": 5,
    "maxSpareServers": 20,
    "startServers": 10,
    "maxRequestsPerChild": 0,
    "allow": [
      "127.0.0.1",
      "192.168.1.0/24"
    ],
    "deny": [],
    "disableViaHeader": false,
    "connectPort": [443, 563],
    "statHost": "tinyproxy.stats",
    "timeout": 600,
    "filter": "/etc/tinyproxy/filter",
    "filterURLs": false,
    "filterCaseSensitive": false,
    "filterDefaultDeny": false
  }
}