knrdl / filterproxy

forward http/https proxy server filtering requests by domain using a whitelist

Repository from Github https://github.comknrdl/filterproxyRepository from Github https://github.comknrdl/filterproxy

filterproxy

forward http/https proxy filtering requests by domain using a whitelist

version: "2.4"

services:
  proxy:
    image: ghcr.io/knrdl/filterproxy:edge
    restart: always
    mem_limit: 100m
    ports:
      - 8080:8080
    environment:
      domains: |
        example.org
        github.com
curl --proxy http://localhost:8080 example.org  # will work
curl --proxy http://localhost:8080 example.com  # will NOT work (403 filtered)

About

forward http/https proxy server filtering requests by domain using a whitelist

License:MIT License


Languages

Language:Dockerfile 71.5%Language:Shell 28.5%