Companion for Stremio.
Check documentation.
- HTTP(S) Proxy
- Proxy Authorization
- Byte Serving
Store is an external service that provides access to content. StremThru acts as an interface for the store.
StremThru can proxy the content from the store. For proxy authorized requests, this is enabled by default.
sequenceDiagram
participant User as User Device
participant StremThru as StremThru
participant Store as Store
User->>StremThru: Request Content
StremThru->>Store: Request Content
loop Byte Serving
Store-->>StremThru: Content Chunk
StremThru-->>User: Content Chunk
end
If you can't access the store using your IP, you can use HTTP(S) Proxy to tunnel the traffic to the store.
sequenceDiagram
participant Client as StremThru
participant Proxy as HTTP(S) Proxy
participant Server as Store
Client->>Proxy: HTTP Request
Proxy->>Server: Forward HTTP Request
Server->>Proxy: HTTP Response
Proxy->>Client: Forward HTTP Response
Check documentation.
Check documentation.
Licensed under the MIT License. Check the LICENSE file for details.