Hunterdark99/PBstremio-addon
0
Pimpbunny Stremio Addon
This Space hosts a Node-based Stremio addon for InternetChicks VOD pages and supports an external fetch relay via PROXY_URL.
Main environment variables
PORT=7860SPACE_URL=https://your-space-name.hf.spaceIC_BASE_URL=https://pimpbunny.com/PROXY_URL=https://your-relay-domain.example.comPROXY_TOKEN=change-me
How proxy mode works
When PROXY_URL is set, the addon does not request InternetChicks directly. Instead, it calls:
GET {PROXY_URL}/fetch?url=<encoded target url>
If PROXY_TOKEN is set, the addon sends it as the x-proxy-token header.
Included relay
This package also includes proxy-relay.js, a lightweight Express relay you can deploy on a VPS or other host. Start it with:
npm install
npm run start:relayRecommended setup
- Keep the addon on Hugging Face Spaces.
- Deploy
proxy-relay.json a VPS or another host that can access internetchicks.com. - Set the Space secret
PROXY_URLto your relay base URL. - Set the same
PROXY_TOKENon both sides.
Proxy secrets
Set these Hugging Face Space secrets if the target site blocks Space IPs:
OUTBOUND_PROXY_HOSTOUTBOUND_PROXY_PORTOUTBOUND_PROXY_USERNAMEOUTBOUND_PROXY_PASSWORD
You can also use one combined secret:
OUTBOUND_PROXY_URL=http://username:password@host:port
