Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/knrdl/filterproxy

forward http/https proxy server filtering requests by domain using a whitelist
https://github.com/knrdl/filterproxy

forward-proxy tinyproxy

Last synced: 6 days ago
JSON representation

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

Awesome Lists containing this project

README

        

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

```yaml
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
```

```shell
curl --proxy http://localhost:8080 example.org # will work
curl --proxy http://localhost:8080 example.com # will NOT work (403 filtered)
```