Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

1 Commit

Repository files navigation

tinyproxy-docker

Simple forward proxy using tinyproxy

dockerhublove

Setup

on Kubernetes

  1. Create configmap

    apiVersion: v1kind: ConfigMapdata:
    tinyproxy.conf: | Port 8000 Listen 0.0.0.0 Upstream proxy-host:proxy-port MaxClients 100 MinSpareServers 1 MaxSpareServers 5 StartServers 1 MaxRequestsPerChild 0metadata:
    name: proxy-confignamespace: namespace
  2. Mount configmap to /etc/tinyproxy

    "spec": {
    "volumes": [
    {
    "name": "proxy-config",
    "configMap": {
    "name": "proxy-config",
    "defaultMode": 420
    }
    }
    ],
    "containers": [
    {
    "name": "proxy",
    "image": "rainist/tinyproxy:1.8.4-r3",
    "volumeMounts": [
    {
    "name": "proxy-config",
    "mountPath": "/etc/tinyproxy"
    }
    ],
    ...
    }
    ],
    ...
    }

About

Simple forward proxy using tinyproxy

Topics

Resources

Stars

5 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages