PR for Privoxy (Prowlarr reverse proxy) (#152)
Some checks failed
/ validate-docker-compose (push) Has been cancelled

This commit is contained in:
Andrew
2025-05-28 16:07:17 +02:00
committed by GitHub
parent e87f683b73
commit 01f45cd4ca
3 changed files with 32 additions and 2 deletions

View File

@ -1,6 +1,6 @@
COMPOSE_PROFILES=
COMPOSE_PATH_SEPARATOR=:
COMPOSE_FILE=docker-compose.yml:adguardhome/docker-compose.yml:tandoor/docker-compose.yml:joplin/docker-compose.yml:homeassistant/docker-compose.yml:immich/docker-compose.yml:vaultwarden/docker-compose.yml
COMPOSE_FILE=docker-compose.yml:adguardhome/docker-compose.yml:tandoor/docker-compose.yml:joplin/docker-compose.yml:homeassistant/docker-compose.yml:immich/docker-compose.yml:vaultwarden/docker-compose.yml:privoxy/docker-compose.yml
USER_ID=1000
GROUP_ID=1000
TIMEZONE="America/New_York"
@ -55,4 +55,4 @@ DECLUTTARR_REMOVE_FAILED_IMPORTS=True
DECLUTTARR_REMOVE_METADATA_MISSING=True
DECLUTTARR_REMOVE_MISSING_FILES=True
DECLUTTARR_REMOVE_ORPHANS=True
JELLYSEERR_HOSTNAME="jellyseerr.${BASE_HOSTNAME}"
JELLYSEERR_HOSTNAME="jellyseerr.${BASE_HOSTNAME}"

13
privoxy/README.md Normal file
View File

@ -0,0 +1,13 @@
# Privoxy
[Privoxy](https://www.privoxy.org) is a simple HTTP/S reverse proxy for Prowlarr and other *arr apps using the already existing VPN container.
Tested with PIA VPN, other modifications might be necessary depending on your provider.
## Installation
Enable Privoxy by setting `COMPOSE_PROFILES=privoxy`.
To enable it on Prowlarr, head to Settings > Indexers > Http.
Add "vpn" as host, 8118 as port, give it a tag/label, then click on "test".
Once working, add the tag/label to each indexer to proxy your connection through the VPN/VPN container.

View File

@ -0,0 +1,17 @@
services:
privoxy:
image: vimagick/privoxy
container_name: privoxy
network_mode: "service:vpn"
restart: always
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:8118"]
interval: 30s
retries: 5
start_period: 10s
timeout: 5s
depends_on:
vpn:
condition: service_healthy
profiles:
- privoxy