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: about 2 months ago
JSON representation
forward http/https proxy server filtering requests by domain using a whitelist
- Host: GitHub
- URL: https://github.com/knrdl/filterproxy
- Owner: knrdl
- License: mit
- Created: 2023-08-18T19:41:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-01-10T11:30:48.000Z (3 months ago)
- Last Synced: 2026-01-11T03:30:27.798Z (3 months ago)
- Topics: forward-proxy, tinyproxy
- Language: Dockerfile
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```