Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/knrdl/filterproxy
- Owner: knrdl
- License: mit
- Created: 2023-08-18T19:41:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-18T20:22:35.000Z (over 1 year ago)
- Last Synced: 2024-11-08T18:26:39.225Z (about 2 months ago)
- Topics: forward-proxy, tinyproxy
- Language: Dockerfile
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- 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)
```