Configuration
Environment Variables Complete reference for AIOStreams environment variables and runtime settings.
AIOStreams has two kinds of configuration:
Bootstrap variables — read from the environment only , before the
database is available. They configure the things needed to start the process
(server, database, encryption, operator auth, logging). These must
be set as environment variables and cannot be changed in the dashboard.
Runtime settings — everything else. These are stored in the database and
are best configured in the dashboard (Settings page) where they can be
edited live, validated, and changed without redeploying. Every runtime
setting still has a matching environment variable: if that variable is set,
it becomes a locked override — the value is forced and the field is shown as
read-only in the UI. Leave it unset to manage the setting from the dashboard.
Recommended approach: set only the bootstrap variables in your .env,
then configure everything else from the dashboard. The
.env.sample
intentionally only contains bootstrap variables for this reason. Use
environment overrides for runtime settings only when you need to lock a value
These are validated at startup and cannot be set from the dashboard.
Variable Default Description BASE_URL— Required. Public URL of your instance, including protocol (e.g. https://aiostreams.example.com).SECRET_KEY— Required. 64-character hex string used to encrypt stored configurations. Generate with openssl rand -hex 32. Cannot be changed after first run. The legacy alias SESSION_SECRET is still accepted for one minor release.PORT3000Port the server listens on. DATABASE_URIsqlite://./data/db.sqliteDatabase connection URI. Supports SQLite and PostgreSQL (postgres://user:pass@host:port/db). REDIS_URI— Redis URI for shared caching. Recommended for multi-instance deployments; single-container setups can leave this unset. REDIS_TIMEOUT5000Redis client connect timeout in milliseconds. SETTINGS_REFRESH_INTERVAL30How often (seconds) each instance polls the DB settings version and reloads runtime config if another instance changed a setting via the dashboard. Keeps multi-instance deployments consistent. Set 0 to disable on single-instance setups. INTERNAL_URLhttp://localhost:${PORT}Internal URL used for communication with built-in addons. The default is fine for almost all setups.
SECRET_KEY is required and must be a 64-character hexadecimal string.
AIOStreams will refuse to start without it, and changing it after first run
makes existing encrypted configurations undecryptable.
Variable Default Description AIOSTREAMS_AUTH— Comma-separated username:password pairs defining all valid credentials. e.g. user1:pass1,user2:pass2. AIOSTREAMS_AUTH_ADMINS— Comma-separated usernames (from AIOSTREAMS_AUTH) that are admins. Admins can access the configure page and admin-only endpoints (proxy stats, proxy URL generation). If unset, all users are admins. AIOSTREAMS_AUTH_PROXY— Comma-separated usernames (from AIOSTREAMS_AUTH) allowed to use the built-in proxy. If unset, all authenticated users can use the proxy. Users not listed can still log in and access the configure page. AIOSTREAMS_AUTH_CONNECTIONS_LIMIT— Comma-separated username:limit connection limits (0 for unlimited) for the built-in proxy.
These configure the logger
Variable Default Description LOG_LEVELinfoerror, warn, info, http, verbose, debug, silly.LOG_FORMATjsontext or json. json is recommended for production.LOG_BUFFER_MAX_BYTES67108864Max bytes of recent log lines kept in memory for the dashboard Logs page. LOG_BUFFER_MAX_ENTRIES200000Hard cap on recent log lines kept in memory for the dashboard Logs page.
Variable Default Description NODE_ENVproductionproduction, development, or test.SYSTEM_LIFECYCLE_ENABLEDfalseAllow the dashboard System page to restart/stop the AIOStreams process.
Everything below is stored in the database and editable from the dashboard
Settings page . The sections, groups, and labels mirror the dashboard exactly.
Set the listed environment variable only if you want to lock that value (it will
appear read-only in the UI). Defaults shown are the built-in defaults used when
neither the environment variable nor a stored value is present.
Environment Variable UI Setting Type Default Description AIOSTREAMS_AUTH_REQUIREDAuth Required boolean falseWhen true, /stremio/configure requires a valid login session (any user in AIOSTREAMS_AUTH) and the config-write gate (CONFIG_ACCESS_KEY) is enforced. When false, the config page is public. CONFIG_ACCESS_KEYConfig Access Key string (unset) Single key embedded in a config and checked on create/update/serve. If unset while authRequired is true, one is generated and persisted automatically. Rotating it invalidates every existing config until re-saved. (secret) SESSION_TTL_SECONDSSession TTL Seconds duration 86400Lifetime of a login session before the user must log in again. Defaults to 24 hours (1d). ALIASED_CONFIGURATIONSAliased Configurations map (unset) Map of aliases to {uuid, password} accessible at /stremio/u/<alias>/manifest.json. Env-supplied form: comma-separated alias:uuid:password entries. (secret) ENABLE_SEARCH_APIEnable Search API boolean trueWhen true, the /api/search endpoint is mounted and reachable. (restart required) PROVIDE_STREAM_DATAProvide Stream Data boolOrList — Whether stream metadata is included in Stremio stream responses. null (default) auto-detects from User-Agent (AIOStreams/* always gets it). true/false overrides for everyone. An IP list enables it only for matching request IPs. EXPOSE_USER_COUNTExpose User Count boolean falseInclude the total user count on the public status endpoint. STREMIO_ADDONS_CONFIG_ISSUERStremio Addons Config Issuer string https://stremio-addons.netIssuer URL declared in the manifest for the Stremio Addons Config integration. STREMIO_ADDONS_CONFIG_SIGNATUREStremio Addons Config Signature string (unset) Signed JWT for the Stremio Addons Config integration. Both issuer and signature must be set for the manifest field to be emitted. (secret) TRUSTED_IPSTrusted Ips list ["172.17.0.0/16","127.0.0.1/32","::1/128"]Comma-separated list of trusted IPs / CIDR ranges. Used when determining the requesting IP. User IP is always trusted via headers regardless of this setting.
Environment Variable UI Setting Type Default Description ADDON_NAMEAddon Name string AIOStreamsDisplay name shown in the manifest and UI. ADDON_IDAddon ID string com.aiostreams.viren070Reverse-DNS identifier published in the manifest. (restart required) CUSTOM_HTMLCustom Html string — Optional HTML injected into the configuration page. ALTERNATE_DESIGNAlternate Design boolean falseSwitches the frontend to the alternate design (different logo and theme).
Environment Variable UI Setting Type Default Description FEATURED_TEMPLATE_IDSFeatured Ids list — Up to 2 template IDs featured on the about page. Defaults to the first 2 available templates when unset. TEMPLATE_URLSUrls list — Remote template URLs to fetch and cache locally. Templates are downloaded once and refreshed on the schedule below. TEMPLATE_REFRESH_INTERVALRefresh Interval duration 86400How often remote templates are refreshed (accepts e.g. "12h", "1d"). Set to 0 to disable automatic refresh.
Environment Variable UI Setting Type Default Description TMDB_ACCESS_TOKENTMDB › Access Token string (unset) TMDB Read Access Token used for strict title matching. (secret) TMDB_API_KEYTMDB › API Key string (unset) TMDB API key used for strict title matching. (secret)
Environment Variable UI Setting Type Default Description TVDB_API_KEYTVDB › API Key string (unset) TVDB API key used for fetching metadata. (secret)
Environment Variable UI Setting Type Default Description TRAKT_CLIENT_IDTrakt › Client ID string — Trakt client ID used for fetching aliases. FETCH_TRAKT_ALIASESTrakt › Fetch Aliases boolean trueEnable fetching aliases from Trakt.
Environment Variable UI Setting Type Default Description ANIME_DB_LEVEL_OF_DETAILAnime DB › Level Of Detail enum required"none" disables the anime DB; "required" loads only required mappings; "full" loads everything. (restart required) ANIME_DB_FRIBB_MAPPINGS_REFRESH_INTERVALAnime DB › Refresh › Fribb Mappings duration 86400Refresh interval for the Fribb anime mappings (seconds; accepts e.g. "1d"). (restart required) ANIME_DB_MANAMI_DB_REFRESH_INTERVALAnime DB › Refresh › Manami DB duration 604800Refresh interval for the Manami anime offline database. (restart required) ANIME_DB_KITSU_IMDB_MAPPING_REFRESH_INTERVALAnime DB › Refresh › Kitsu Imdb Mapping duration 86400Refresh interval for the Kitsu↔IMDB mapping. (restart required) ANIME_DB_EXTENDED_ANITRAKT_MOVIES_REFRESH_INTERVALAnime DB › Refresh › Extended Anitrakt Movies duration 86400Refresh interval for the Extended Anitrakt movies dataset. (restart required) ANIME_DB_EXTENDED_ANITRAKT_TV_REFRESH_INTERVALAnime DB › Refresh › Extended Anitrakt Tv duration 86400Refresh interval for the Extended Anitrakt TV dataset. (restart required) ANIME_DB_ANIME_LIST_REFRESH_INTERVALAnime DB › Refresh › Anime List duration 604800Refresh interval for the Anime List XML dataset. (restart required)
Environment Variable UI Setting Type Default Description LOG_SENSITIVE_INFOLog Sensitive Info boolean falseWhen true, sensitive values may appear in logs. Use only for debugging. (restart required)
Environment Variable UI Setting Type Default Description DEFAULT_USER_AGENTDefault User Agent string AIOStreams/{version}Default User-Agent header for outbound HTTP requests. Supports {version} and {random} placeholders. (restart required) AIOSTREAMS_USER_AGENTAiostreams User Agent string AIOStreams/{version}User-Agent identifying AIOStreams to upstream services. Supports {version} and {random} placeholders. (restart required) HOSTNAME_USER_AGENT_OVERRIDESHostname User Agent Overrides map — Per-hostname User-Agent overrides. Env shape: host1:ua1,host2:ua2,.... Takes priority over the default user agents. ADDON_PROXYAddon Proxy list — Outbound HTTP proxy URL(s) used when fetching addon endpoints. ADDON_PROXY_CONFIGAddon Proxy Config map — Per-hostname proxy enablement / index. Env shape: host1:bool|index,host2:bool|index,.... Index references addonProxy when configured as a list. REQUEST_URL_MAPPINGSRequest URL Mappings map — Origin-level URL rewrites applied to outbound requests. JSON object of {origin: replacement} URLs.
Environment Variable UI Setting Type Default Description ENCRYPT_MEDIAFLOW_URLSEncryption › Mediaflow boolean trueEncrypt MediaFlow proxy URLs surfaced to clients. ENCRYPT_STREMTHRU_URLSEncryption › Stremthru boolean trueEncrypt StremThru proxy URLs surfaced to clients.
Environment Variable UI Setting Type Default Description DEFAULT_PROXY_ENABLEDDefault › Enabled json — When set, used as the default proxy enabled state for new users. DEFAULT_PROXY_IDDefault › ID string — Default proxy service identifier. DEFAULT_PROXY_URLDefault › URL string — Default proxy URL. DEFAULT_PROXY_PUBLIC_URLDefault › Public URL string — Public-facing default proxy URL surfaced to clients (when different from the internal one). DEFAULT_PROXY_CREDENTIALSDefault › Credentials string (unset) Credentials for the default proxy. (secret) DEFAULT_PROXY_PUBLIC_IPDefault › Public IP string — Public IP of the default proxy. DEFAULT_PROXY_PROXIED_SERVICESDefault › Proxied Services list — List of serviceIds to proxy by default. JSON array of strings.
Environment Variable UI Setting Type Default Description FORCE_PROXY_ENABLEDForce › Enabled json — Override user choice of whether the proxy is enabled. FORCE_PROXY_IDForce › ID string — Override user choice of proxy service identifier. FORCE_PROXY_URLForce › URL string — Override user choice of proxy URL. FORCE_PROXY_PUBLIC_URLForce › Public URL string — Override user choice of proxy public URL. FORCE_PROXY_CREDENTIALSForce › Credentials string (unset) Override user choice of proxy credentials. (secret) FORCE_PROXY_PUBLIC_IPForce › Public IP string — Override user choice of proxy public IP. FORCE_PROXY_DISABLE_PROXIED_ADDONSForce › Disable Proxied Addons boolean falseWhen forcing a proxy, also disable any addons that already proxy themselves. FORCE_PROXY_PROXIED_SERVICESForce › Proxied Services list — List of serviceIds to force-proxy. JSON array of strings.
Environment Variable UI Setting Type Default Description PROXY_IP_CACHE_TTLIP › Cache TTL number 900Cache TTL for resolved proxy IPs (seconds).
Environment Variable UI Setting Type Default Description NZB_PROXY_PUBLIC_ENABLEDPublic Enabled boolean falseEnable the public/generic NZB proxy endpoint. Disabled by default for security. (restart required) NZB_PROXY_EASYNEWS_ENABLEDEasynews Enabled boolean falseEnable the Easynews-specific NZB proxy endpoint. (restart required) NZB_PROXY_MAX_SIZEMax Size size 20000000Maximum size of NZBs that can be proxied. Accepts plain bytes or 20MB-style strings. NZB_PROXY_RATE_LIMIT_WINDOWRate Limit Window number 3600Sliding window for the NZB proxy rate limit (seconds). (restart required) NZB_PROXY_RATE_LIMIT_PER_USERRate Limit Per User number 100Maximum NZB proxy requests per user per window. (restart required) ZYCLOPS_HEALTH_PROXY_ENDPOINTZyclops Health Proxy Endpoint string https://zyclops.elfhosted.comBase URL of the Zyclops health proxy used by the Newznab preset.
Environment Variable UI Setting Type Default Description RATE_LIMIT_STOREStore enum memoryBackend used to track rate-limit counters. (restart required) DISABLE_RATE_LIMITSDisabled boolean falseWhen true, all rate limiters are disabled. (restart required)
Environment Variable UI Setting Type Default Description STATIC_RATE_LIMIT_WINDOWStatic › Window number 5Sliding-window length (seconds) for the static file rate limiter. (restart required) STATIC_RATE_LIMIT_MAX_REQUESTSStatic › Max Requests number 200Maximum requests per IP within the window for the static file rate limiter. (restart required)
Environment Variable UI Setting Type Default Description USER_API_RATE_LIMIT_WINDOWUser API › Window number 5Sliding-window length (seconds) for the user API rate limiter. (restart required) USER_API_RATE_LIMIT_MAX_REQUESTSUser API › Max Requests number 5Maximum requests per IP within the window for the user API rate limiter. (restart required)
Environment Variable UI Setting Type Default Description STREAM_API_RATE_LIMIT_WINDOWStream API › Window number 10Sliding-window length (seconds) for the stream API rate limiter. (restart required) STREAM_API_RATE_LIMIT_MAX_REQUESTSStream API › Max Requests number 5Maximum requests per IP within the window for the stream API rate limiter. (restart required)
Environment Variable UI Setting Type Default Description FORMAT_API_RATE_LIMIT_WINDOWFormat API › Window number 5Sliding-window length (seconds) for the format API rate limiter. (restart required) FORMAT_API_RATE_LIMIT_MAX_REQUESTSFormat API › Max Requests number 30Maximum requests per IP within the window for the format API rate limiter. (restart required)
Environment Variable UI Setting Type Default Description CATALOG_API_RATE_LIMIT_WINDOWCatalog API › Window number 5Sliding-window length (seconds) for the catalog API rate limiter. (restart required) CATALOG_API_RATE_LIMIT_MAX_REQUESTSCatalog API › Max Requests number 5Maximum requests per IP within the window for the catalog API rate limiter. (restart required)
Environment Variable UI Setting Type Default Description ANIME_API_RATE_LIMIT_WINDOWAnime API › Window number 60Sliding-window length (seconds) for the anime API rate limiter. (restart required) ANIME_API_RATE_LIMIT_MAX_REQUESTSAnime API › Max Requests number 120Maximum requests per IP within the window for the anime API rate limiter. (restart required)
Environment Variable UI Setting Type Default Description STREMIO_STREAM_RATE_LIMIT_WINDOWStremio Stream › Window number 15Sliding-window length (seconds) for the Stremio stream rate limiter. (restart required) STREMIO_STREAM_RATE_LIMIT_MAX_REQUESTSStremio Stream › Max Requests number 10Maximum requests per IP within the window for the Stremio stream rate limiter. (restart required)
Environment Variable UI Setting Type Default Description STREMIO_CATALOG_RATE_LIMIT_WINDOWStremio Catalog › Window number 5Sliding-window length (seconds) for the Stremio catalog rate limiter. (restart required) STREMIO_CATALOG_RATE_LIMIT_MAX_REQUESTSStremio Catalog › Max Requests number 30Maximum requests per IP within the window for the Stremio catalog rate limiter. (restart required)
Environment Variable UI Setting Type Default Description STREMIO_MANIFEST_RATE_LIMIT_WINDOWStremio Manifest › Window number 5Sliding-window length (seconds) for the Stremio manifest rate limiter. (restart required) STREMIO_MANIFEST_RATE_LIMIT_MAX_REQUESTSStremio Manifest › Max Requests number 5Maximum requests per IP within the window for the Stremio manifest rate limiter. (restart required)
Environment Variable UI Setting Type Default Description STREMIO_SUBTITLE_RATE_LIMIT_WINDOWStremio Subtitle › Window number 5Sliding-window length (seconds) for the Stremio subtitle rate limiter. (restart required) STREMIO_SUBTITLE_RATE_LIMIT_MAX_REQUESTSStremio Subtitle › Max Requests number 10Maximum requests per IP within the window for the Stremio subtitle rate limiter. (restart required)
Environment Variable UI Setting Type Default Description STREMIO_META_RATE_LIMIT_WINDOWStremio Meta › Window number 5Sliding-window length (seconds) for the Stremio meta rate limiter. (restart required) STREMIO_META_RATE_LIMIT_MAX_REQUESTSStremio Meta › Max Requests number 15Maximum requests per IP within the window for the Stremio meta rate limiter. (restart required)
Environment Variable UI Setting Type Default Description EASYNEWS_NZB_RATE_LIMIT_WINDOWEasynews NZB › Window number 60Sliding-window length (seconds) for the Easynews NZB rate limiter. (restart required) EASYNEWS_NZB_RATE_LIMIT_MAX_REQUESTSEasynews NZB › Max Requests number 15Maximum requests per IP within the window for the Easynews NZB rate limiter. (restart required)
Environment Variable UI Setting Type Default Description LOGIN_RATE_LIMIT_WINDOWLogin › Window number 300Sliding-window length (seconds) for the login rate limiter. (restart required) LOGIN_RATE_LIMIT_MAX_REQUESTSLogin › Max Requests number 5Maximum requests per IP within the window for the login rate limiter. (restart required)
Environment Variable UI Setting Type Default Description DEFAULT_SERVICE_CREDENTIALSDefault Credentials map (unset) Default credentials pre-filled into user configurations when not provided. Format: one serviceId.credentialId=value entry per line (use \n if your environment cannot store multiline values). Service IDs: realdebrid, alldebrid, premiumize, debridlink, torbox, offcloud, putio, easynews, easydebrid, debrider, pikpak, seedr, nzbdav, altmount, stremthru_newz. Credential IDs vary by service (e.g. apiKey, username, password, clientId, encodedToken). Example: realdebrid.apiKey=xxx / easynews.username=user / easynews.password=pass. (secret) FORCED_SERVICE_CREDENTIALSForced Credentials map (unset) Credentials that override whatever the user has configured and are hidden from the configuration UI. Same serviceId.credentialId=value per-line format and service/credential IDs as DEFAULT_SERVICE_CREDENTIALS. (secret)
Environment Variable UI Setting Type Default Description DEFAULT_TIMEOUTDefault Timeout number 7000Fallback timeout for preset stream fetching when a preset does not set its own (milliseconds).
Environment Variable UI Setting Type Default Description COMET_URLComet › URL list ["https://comet.feels.legal"]Upstream URL(s) for the Comet addon. DEFAULT_COMET_TIMEOUTComet › Default Timeout number — Default timeout for the Comet addon (milliseconds). Falls back to the global default when unset. DEFAULT_COMET_USER_AGENTComet › Default User Agent string — Default User-Agent for the Comet addon. Supports {version}/{random} placeholders. COMET_PUBLIC_API_TOKENComet › Public API Token list — Public API token(s) used by Comet. JSON array or single string.
Environment Variable UI Setting Type Default Description METEOR_URLMeteor › URL list ["https://meteorfortheweebs.midnightignite.me"]Upstream URL(s) for the Meteor addon. DEFAULT_METEOR_TIMEOUTMeteor › Default Timeout number — Default timeout for the Meteor addon (milliseconds). Falls back to the global default when unset. DEFAULT_METEOR_USER_AGENTMeteor › Default User Agent string — Default User-Agent for the Meteor addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description MEDIAFUSION_URLMediafusion › URL list ["https://mediafusion.elfhosted.com"]Upstream URL(s) for the MediaFusion addon. DEFAULT_MEDIAFUSION_TIMEOUTMediafusion › Default Timeout number — Default timeout for the MediaFusion addon (milliseconds). Falls back to the global default when unset. DEFAULT_MEDIAFUSION_USER_AGENTMediafusion › Default User Agent string — Default User-Agent for the MediaFusion addon. Supports {version}/{random} placeholders. MEDIAFUSION_API_PASSWORDMediafusion › API Password string (unset) API password sent to MediaFusion. (secret) MEDIAFUSION_DEFAULT_USE_CACHED_RESULTS_ONLYMediafusion › Default Use Cached Results Only boolean trueDefault value of MediaFusion's "cached results only" toggle. MEDIAFUSION_FORCED_USE_CACHED_RESULTS_ONLYMediafusion › Forced Use Cached Results Only json — When set, overrides users' "cached results only" toggle.
Environment Variable UI Setting Type Default Description JACKETTIO_URLJackettio › URL list ["https://jackettio.elfhosted.com"]Upstream URL(s) for the Jackettio addon. DEFAULT_JACKETTIO_TIMEOUTJackettio › Default Timeout number — Default timeout for the Jackettio addon (milliseconds). Falls back to the global default when unset. DEFAULT_JACKETTIO_USER_AGENTJackettio › Default User Agent string — Default User-Agent for the Jackettio addon. Supports {version}/{random} placeholders. DEFAULT_JACKETTIO_INDEXERSJackettio › Default Indexers list ["eztv","thepiratebay","therarbg","yts"]Default indexer list applied when creating Jackettio configs. JSON array of strings. DEFAULT_JACKETTIO_STREMTHRU_URLJackettio › Default Stremthru URL string https://stremthru.13377001.xyzDefault StremThru URL passed to new Jackettio configs.
Environment Variable UI Setting Type Default Description TORRENTIO_URLTorrentio › URL list ["https://torrentio.strem.fun"]Upstream URL(s) for the Torrentio addon. DEFAULT_TORRENTIO_TIMEOUTTorrentio › Default Timeout number — Default timeout for the Torrentio addon (milliseconds). Falls back to the global default when unset. DEFAULT_TORRENTIO_USER_AGENTTorrentio › Default User Agent string — Default User-Agent for the Torrentio addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description ORION_STREMIO_ADDON_URLOrion › URL list ["https://5a0d1888fa64-orion.baby-beamup.club"]Upstream URL(s) for the Orion addon. DEFAULT_ORION_TIMEOUTOrion › Default Timeout number — Default timeout for the Orion addon (milliseconds). Falls back to the global default when unset. DEFAULT_ORION_USER_AGENTOrion › Default User Agent string — Default User-Agent for the Orion addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description PEERFLIX_URLPeerflix › URL list ["https://addon.peerflix.mov"]Upstream URL(s) for the Peerflix addon. DEFAULT_PEERFLIX_TIMEOUTPeerflix › Default Timeout number — Default timeout for the Peerflix addon (milliseconds). Falls back to the global default when unset. DEFAULT_PEERFLIX_USER_AGENTPeerflix › Default User Agent string — Default User-Agent for the Peerflix addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description TORBOX_STREMIO_URLTorbox › URL list ["https://stremio.torbox.app"]Upstream URL(s) for the Torbox addon. DEFAULT_TORBOX_TIMEOUTTorbox › Default Timeout number — Default timeout for the Torbox addon (milliseconds). Falls back to the global default when unset. DEFAULT_TORBOX_USER_AGENTTorbox › Default User Agent string — Default User-Agent for the Torbox addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description EASYNEWS_URLEasynews › URL list ["https://ea627ddf0ee7-easynews.baby-beamup.club"]Upstream URL(s) for the Easynews addon. DEFAULT_EASYNEWS_TIMEOUTEasynews › Default Timeout number — Default timeout for the Easynews addon (milliseconds). Falls back to the global default when unset. DEFAULT_EASYNEWS_USER_AGENTEasynews › Default User Agent string — Default User-Agent for the Easynews addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description EASYNEWS_PLUS_URLEasynews Plus › URL list ["https://b89262c192b0-stremio-easynews-addon.baby-beamup.club"]Upstream URL(s) for the Easynews+ addon. DEFAULT_EASYNEWS_PLUS_TIMEOUTEasynews Plus › Default Timeout number — Default timeout for the Easynews+ addon (milliseconds). Falls back to the global default when unset. DEFAULT_EASYNEWS_PLUS_USER_AGENTEasynews Plus › Default User Agent string — Default User-Agent for the Easynews+ addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description EASYNEWS_PLUS_PLUS_URLEasynews Plus Plus › URL list ["https://easynews-cloudflare-worker.jqrw92fchz.workers.dev"]Upstream URL(s) for the Easynews++ addon. DEFAULT_EASYNEWS_PLUS_PLUS_TIMEOUTEasynews Plus Plus › Default Timeout number — Default timeout for the Easynews++ addon (milliseconds). Falls back to the global default when unset. DEFAULT_EASYNEWS_PLUS_PLUS_USER_AGENTEasynews Plus Plus › Default User Agent string — Default User-Agent for the Easynews++ addon. Supports {version}/{random} placeholders. EASYNEWS_PLUS_PLUS_PUBLIC_URLEasynews Plus Plus › Public URL string — Public-facing URL surfaced to clients (when different from the internal one).
Environment Variable UI Setting Type Default Description DEBRIDIO_URLDebridio › URL list ["https://addon.debridio.com"]Upstream URL(s) for the Debridio addon. DEFAULT_DEBRIDIO_TIMEOUTDebridio › Default Timeout number — Default timeout for the Debridio addon (milliseconds). Falls back to the global default when unset. DEFAULT_DEBRIDIO_USER_AGENTDebridio › Default User Agent string — Default User-Agent for the Debridio addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description DEBRIDIO_TVDB_URLDebridio TVDB › URL list ["https://tvdb-addon.debridio.com"]Upstream URL(s) for the Debridio TVDB addon. DEFAULT_DEBRIDIO_TVDB_TIMEOUTDebridio TVDB › Default Timeout number — Default timeout for the Debridio TVDB addon (milliseconds). Falls back to the global default when unset. DEFAULT_DEBRIDIO_TVDB_USER_AGENTDebridio TVDB › Default User Agent string — Default User-Agent for the Debridio TVDB addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description DEBRIDIO_TMDB_URLDebridio TMDB › URL list ["https://tmdb-addon.debridio.com"]Upstream URL(s) for the Debridio TMDB addon. DEFAULT_DEBRIDIO_TMDB_TIMEOUTDebridio TMDB › Default Timeout number — Default timeout for the Debridio TMDB addon (milliseconds). Falls back to the global default when unset. DEFAULT_DEBRIDIO_TMDB_USER_AGENTDebridio TMDB › Default User Agent string — Default User-Agent for the Debridio TMDB addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description DEBRIDIO_TV_URLDebridio Tv › URL list ["https://tv.lb.debridio.com"]Upstream URL(s) for the Debridio TV addon. DEFAULT_DEBRIDIO_TV_TIMEOUTDebridio Tv › Default Timeout number — Default timeout for the Debridio TV addon (milliseconds). Falls back to the global default when unset. DEFAULT_DEBRIDIO_TV_USER_AGENTDebridio Tv › Default User Agent string — Default User-Agent for the Debridio TV addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description DEBRIDIO_WATCHTOWER_URLDebridio Watchtower › URL list ["https://wt-addon.debridio.com"]Upstream URL(s) for the Debridio Watchtower addon. DEFAULT_DEBRIDIO_WATCHTOWER_TIMEOUTDebridio Watchtower › Default Timeout number — Default timeout for the Debridio Watchtower addon (milliseconds). Falls back to the global default when unset. DEFAULT_DEBRIDIO_WATCHTOWER_USER_AGENTDebridio Watchtower › Default User Agent string — Default User-Agent for the Debridio Watchtower addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description DEBRIDIO_IC4A_URLDebridio Ic4a › URL list ["https://ic4a.lb.debridio.com"]Upstream URL(s) for the Debridio IC4A addon. DEFAULT_DEBRIDIO_IC4A_TIMEOUTDebridio Ic4a › Default Timeout number — Default timeout for the Debridio IC4A addon (milliseconds). Falls back to the global default when unset. DEFAULT_DEBRIDIO_IC4A_USER_AGENTDebridio Ic4a › Default User Agent string — Default User-Agent for the Debridio IC4A addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description STREMTHRU_STORE_URLStremthru Store › URL list ["https://stremthru.13377001.xyz/stremio/store"]Upstream URL(s) for the StremThru Store addon. DEFAULT_STREMTHRU_STORE_TIMEOUTStremthru Store › Default Timeout number — Default timeout for the StremThru Store addon (milliseconds). Falls back to the global default when unset. DEFAULT_STREMTHRU_STORE_USER_AGENTStremthru Store › Default User Agent string — Default User-Agent for the StremThru Store addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description STREMTHRU_TORZ_URLStremthru Torz › URL list ["https://stremthru.13377001.xyz/stremio/torz"]Upstream URL(s) for the StremThru Torz addon. DEFAULT_STREMTHRU_TORZ_TIMEOUTStremthru Torz › Default Timeout number — Default timeout for the StremThru Torz addon (milliseconds). Falls back to the global default when unset. DEFAULT_STREMTHRU_TORZ_USER_AGENTStremthru Torz › Default User Agent string — Default User-Agent for the StremThru Torz addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description DEFAULT_STREAMFUSION_URLStreamfusion › URL list ["https://stream-fusion.stremiofr.com"]Upstream URL(s) for the StreamFusion addon. DEFAULT_STREAMFUSION_TIMEOUTStreamfusion › Default Timeout number — Default timeout for the StreamFusion addon (milliseconds). Falls back to the global default when unset. DEFAULT_STREAMFUSION_USER_AGENTStreamfusion › Default User Agent string — Default User-Agent for the StreamFusion addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description SOOTIO_URLSootio › URL list ["https://sooti.click"]Upstream URL(s) for the Sootio addon. DEFAULT_SOOTIO_TIMEOUTSootio › Default Timeout number — Default timeout for the Sootio addon (milliseconds). Falls back to the global default when unset. DEFAULT_SOOTIO_USER_AGENTSootio › Default User Agent string — Default User-Agent for the Sootio addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description DEFAULT_DMM_CAST_TIMEOUTDmm Cast › Default Timeout number — Default timeout for the DMM Cast addon (milliseconds). Falls back to the global default when unset. DEFAULT_DMM_CAST_USER_AGENTDmm Cast › Default User Agent string — Default User-Agent for the DMM Cast addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description OPENSUBTITLES_URLOpensubtitles › URL list ["https://opensubtitles-v3.strem.io"]Upstream URL(s) for the OpenSubtitles addon. DEFAULT_OPENSUBTITLES_TIMEOUTOpensubtitles › Default Timeout number — Default timeout for the OpenSubtitles addon (milliseconds). Falls back to the global default when unset. DEFAULT_OPENSUBTITLES_USER_AGENTOpensubtitles › Default User Agent string — Default User-Agent for the OpenSubtitles addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description OPENSUBTITLES_V3_PLUS_URLOpensubtitles V3 Plus › URL list ["https://opensubtitles.stremio.homes"]Upstream URL(s) for the OpenSubtitles V3+ addon. DEFAULT_OPENSUBTITLES_V3_PLUS_TIMEOUTOpensubtitles V3 Plus › Default Timeout number — Default timeout for the OpenSubtitles V3+ addon (milliseconds). Falls back to the global default when unset. DEFAULT_OPENSUBTITLES_V3_PLUS_USER_AGENTOpensubtitles V3 Plus › Default User Agent string — Default User-Agent for the OpenSubtitles V3+ addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description MARVEL_UNIVERSE_URLMarvel Universe › URL list ["https://addon-marvel.onrender.com"]Upstream URL(s) for the Marvel Universe addon. DEFAULT_MARVEL_CATALOG_TIMEOUTMarvel Universe › Default Timeout number — Default timeout for the Marvel Universe addon (milliseconds). Falls back to the global default when unset. DEFAULT_MARVEL_CATALOG_USER_AGENTMarvel Universe › Default User Agent string — Default User-Agent for the Marvel Universe addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description DC_UNIVERSE_URLDc Universe › URL list ["https://addon-dc-cq85.onrender.com"]Upstream URL(s) for the DC Universe addon. DEFAULT_DC_UNIVERSE_TIMEOUTDc Universe › Default Timeout number — Default timeout for the DC Universe addon (milliseconds). Falls back to the global default when unset. DEFAULT_DC_UNIVERSE_USER_AGENTDc Universe › Default User Agent string — Default User-Agent for the DC Universe addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description DEFAULT_STAR_WARS_UNIVERSE_URLStar Wars Universe › URL list ["https://addon-star-wars-u9e3.onrender.com"]Upstream URL(s) for the Star Wars Universe addon. DEFAULT_STAR_WARS_UNIVERSE_TIMEOUTStar Wars Universe › Default Timeout number — Default timeout for the Star Wars Universe addon (milliseconds). Falls back to the global default when unset. DEFAULT_STAR_WARS_UNIVERSE_USER_AGENTStar Wars Universe › Default User Agent string — Default User-Agent for the Star Wars Universe addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description ANIME_KITSU_URLAnime Kitsu › URL list ["https://anime-kitsu.strem.fun"]Upstream URL(s) for the Anime Kitsu addon. DEFAULT_ANIME_KITSU_TIMEOUTAnime Kitsu › Default Timeout number — Default timeout for the Anime Kitsu addon (milliseconds). Falls back to the global default when unset. DEFAULT_ANIME_KITSU_USER_AGENTAnime Kitsu › Default User Agent string — Default User-Agent for the Anime Kitsu addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description NUVIOSTREAMS_URLNuvio Streams › URL list ["https://nuviostreams.hayd.uk"]Upstream URL(s) for the NuvioStreams addon. DEFAULT_NUVIOSTREAMS_TIMEOUTNuvio Streams › Default Timeout number — Default timeout for the NuvioStreams addon (milliseconds). Falls back to the global default when unset. DEFAULT_NUVIOSTREAMS_USER_AGENTNuvio Streams › Default User Agent string — Default User-Agent for the NuvioStreams addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description TORRENT_CATALOGS_URLTorrent Catalogs › URL list ["https://torrent-catalogs.strem.fun"]Upstream URL(s) for the Torrent Catalogs addon. DEFAULT_TORRENT_CATALOGS_TIMEOUTTorrent Catalogs › Default Timeout number — Default timeout for the Torrent Catalogs addon (milliseconds). Falls back to the global default when unset. DEFAULT_TORRENT_CATALOGS_USER_AGENTTorrent Catalogs › Default User Agent string — Default User-Agent for the Torrent Catalogs addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description TMDB_COLLECTIONS_URLTMDB Collections › URL list ["https://61ab9c85a149-tmdb-collections.baby-beamup.club"]Upstream URL(s) for the TMDB Collections addon. DEFAULT_TMDB_COLLECTIONS_TIMEOUTTMDB Collections › Default Timeout number — Default timeout for the TMDB Collections addon (milliseconds). Falls back to the global default when unset. DEFAULT_TMDB_COLLECTIONS_USER_AGENTTMDB Collections › Default User Agent string — Default User-Agent for the TMDB Collections addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description RPDB_CATALOGS_URLRPDB Catalogs › URL list ["https://1fe84bc728af-rpdb.baby-beamup.club"]Upstream URL(s) for the RPDB Catalogs addon. DEFAULT_RPDB_CATALOGS_TIMEOUTRPDB Catalogs › Default Timeout number — Default timeout for the RPDB Catalogs addon (milliseconds). Falls back to the global default when unset. DEFAULT_RPDB_CATALOGS_USER_AGENTRPDB Catalogs › Default User Agent string — Default User-Agent for the RPDB Catalogs addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description STREAMING_CATALOGS_URLStreaming Catalogs › URL list ["https://7a82163c306e-stremio-netflix-catalog-addon.baby-beamup.club"]Upstream URL(s) for the Streaming Catalogs addon. DEFAULT_STREAMING_CATALOGS_TIMEOUTStreaming Catalogs › Default Timeout number — Default timeout for the Streaming Catalogs addon (milliseconds). Falls back to the global default when unset. DEFAULT_STREAMING_CATALOGS_USER_AGENTStreaming Catalogs › Default User Agent string — Default User-Agent for the Streaming Catalogs addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description ANIME_CATALOGS_URLAnime Catalogs › URL list ["https://1fe84bc728af-stremio-anime-catalogs.baby-beamup.club"]Upstream URL(s) for the Anime Catalogs addon. DEFAULT_ANIME_CATALOGS_TIMEOUTAnime Catalogs › Default Timeout number — Default timeout for the Anime Catalogs addon (milliseconds). Falls back to the global default when unset. DEFAULT_ANIME_CATALOGS_USER_AGENTAnime Catalogs › Default User Agent string — Default User-Agent for the Anime Catalogs addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description DOCTOR_WHO_UNIVERSE_URLDoctor Who Universe › URL list ["https://new-who.onrender.com"]Upstream URL(s) for the Doctor Who Universe addon. DEFAULT_DOCTOR_WHO_UNIVERSE_TIMEOUTDoctor Who Universe › Default Timeout number — Default timeout for the Doctor Who Universe addon (milliseconds). Falls back to the global default when unset. DEFAULT_DOCTOR_WHO_UNIVERSE_USER_AGENTDoctor Who Universe › Default User Agent string — Default User-Agent for the Doctor Who Universe addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description WEBSTREAMR_URLWebstreamr › URL list ["https://webstreamr.hayd.uk"]Upstream URL(s) for the WebStreamr addon. DEFAULT_WEBSTREAMR_TIMEOUTWebstreamr › Default Timeout number — Default timeout for the WebStreamr addon (milliseconds). Falls back to the global default when unset. DEFAULT_WEBSTREAMR_USER_AGENTWebstreamr › Default User Agent string — Default User-Agent for the WebStreamr addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description HDHUB_URLHdhub › URL list ["https://hdhub.thevolecitor.qzz.io"]Upstream URL(s) for the HdHub addon. DEFAULT_HDHUB_TIMEOUTHdhub › Default Timeout number — Default timeout for the HdHub addon (milliseconds). Falls back to the global default when unset. DEFAULT_HDHUB_USER_AGENTHdhub › Default User Agent string — Default User-Agent for the HdHub addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description BAGUETTIO_URLBaguettio › URL list ["https://baguettio.org"]Upstream URL(s) for the Baguettio addon. DEFAULT_BAGUETTIO_TIMEOUTBaguettio › Default Timeout number — Default timeout for the Baguettio addon (milliseconds). Falls back to the global default when unset. DEFAULT_BAGUETTIO_USER_AGENTBaguettio › Default User Agent string — Default User-Agent for the Baguettio addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description TMDB_ADDON_URLTMDB Addon › URL list ["https://tmdb.elfhosted.com"]Upstream URL(s) for the TMDB Addon addon. DEFAULT_TMDB_ADDON_TIMEOUTTMDB Addon › Default Timeout number — Default timeout for the TMDB Addon addon (milliseconds). Falls back to the global default when unset. DEFAULT_TMDB_ADDON_USER_AGENTTMDB Addon › Default User Agent string — Default User-Agent for the TMDB Addon addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description TORRENTS_DB_URLTorrents DB › URL list ["https://torrentsdb.com"]Upstream URL(s) for the Torrents DB addon. DEFAULT_TORRENTS_DB_TIMEOUTTorrents DB › Default Timeout number — Default timeout for the Torrents DB addon (milliseconds). Falls back to the global default when unset. DEFAULT_TORRENTS_DB_USER_AGENTTorrents DB › Default User Agent string — Default User-Agent for the Torrents DB addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description USA_TV_URLUsa Tv › URL list ["https://848b3516657c-usatv.baby-beamup.club"]Upstream URL(s) for the USA TV addon. DEFAULT_USA_TV_TIMEOUTUsa Tv › Default Timeout number — Default timeout for the USA TV addon (milliseconds). Falls back to the global default when unset. DEFAULT_USA_TV_USER_AGENTUsa Tv › Default User Agent string — Default User-Agent for the USA TV addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description ARGENTINA_TV_URLArgentina Tv › URL list ["https://848b3516657c-argentinatv.baby-beamup.club"]Upstream URL(s) for the Argentina TV addon. DEFAULT_ARGENTINA_TV_TIMEOUTArgentina Tv › Default Timeout number — Default timeout for the Argentina TV addon (milliseconds). Falls back to the global default when unset. DEFAULT_ARGENTINA_TV_USER_AGENTArgentina Tv › Default User Agent string — Default User-Agent for the Argentina TV addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description BRAZUCA_TORRENTS_URLBrazuca Torrents › URL list ["https://94c8cb9f702d-brazuca-torrents.baby-beamup.club"]Upstream URL(s) for the Brazuca Torrents addon. DEFAULT_BRAZUCA_TORRENTS_TIMEOUTBrazuca Torrents › Default Timeout number — Default timeout for the Brazuca Torrents addon (milliseconds). Falls back to the global default when unset. DEFAULT_BRAZUCA_TORRENTS_USER_AGENTBrazuca Torrents › Default User Agent string — Default User-Agent for the Brazuca Torrents addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description SUBDL_URLSubdl › URL list ["https://subdl.strem.top"]Upstream URL(s) for the SubDL addon. DEFAULT_SUBDL_TIMEOUTSubdl › Default Timeout number — Default timeout for the SubDL addon (milliseconds). Falls back to the global default when unset. DEFAULT_SUBDL_USER_AGENTSubdl › Default User Agent string — Default User-Agent for the SubDL addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description SUBSOURCE_URLSubsource › URL list ["https://subsource.strem.top"]Upstream URL(s) for the SubSource addon. DEFAULT_SUBSOURCE_TIMEOUTSubsource › Default Timeout number — Default timeout for the SubSource addon (milliseconds). Falls back to the global default when unset. DEFAULT_SUBSOURCE_USER_AGENTSubsource › Default User Agent string — Default User-Agent for the SubSource addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description AI_SEARCH_URLAi Search › URL list ["https://stremio.itcon.au"]Upstream URL(s) for the AI Search addon. DEFAULT_AI_SEARCH_TIMEOUTAi Search › Default Timeout number — Default timeout for the AI Search addon (milliseconds). Falls back to the global default when unset. DEFAULT_AI_SEARCH_USER_AGENTAi Search › Default User Agent string — Default User-Agent for the AI Search addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description FLIX_STREAMS_URLFlix Streams › URL list ["https://flixnest.app/flix-streams"]Upstream URL(s) for the Flix-Streams addon. DEFAULT_FLIX_STREAMS_TIMEOUTFlix Streams › Default Timeout number — Default timeout for the Flix-Streams addon (milliseconds). Falls back to the global default when unset. DEFAULT_FLIX_STREAMS_USER_AGENTFlix Streams › Default User Agent string — Default User-Agent for the Flix-Streams addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description FKSTREAM_URLFkstream › URL list ["https://streamio.fankai.fr"]Upstream URL(s) for the FKStream addon. DEFAULT_FKSTREAM_TIMEOUTFkstream › Default Timeout number — Default timeout for the FKStream addon (milliseconds). Falls back to the global default when unset. DEFAULT_FKSTREAM_USER_AGENTFkstream › Default User Agent string — Default User-Agent for the FKStream addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description AIOSUBTITLE_URLAio Subtitle › URL list ["https://3b4bbf5252c4-aio-streaming.baby-beamup.club"]Upstream URL(s) for the AIOSubtitle addon. DEFAULT_AIOSUBTITLE_TIMEOUTAio Subtitle › Default Timeout number — Default timeout for the AIOSubtitle addon (milliseconds). Falls back to the global default when unset. DEFAULT_AIOSUBTITLE_USER_AGENTAio Subtitle › Default User Agent string — Default User-Agent for the AIOSubtitle addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description SUBHERO_URLSubhero › URL list ["https://subhero.chromeknight.dev"]Upstream URL(s) for the SubHero addon. DEFAULT_SUBHERO_TIMEOUTSubhero › Default Timeout number — Default timeout for the SubHero addon (milliseconds). Falls back to the global default when unset. DEFAULT_SUBHERO_USER_AGENTSubhero › Default User Agent string — Default User-Agent for the SubHero addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description YASTREAM_URLYastream › URL list ["https://yastream.tamthai.de"]Upstream URL(s) for the yastream addon. DEFAULT_YASTREAM_TIMEOUTYastream › Default Timeout number — Default timeout for the yastream addon (milliseconds). Falls back to the global default when unset. DEFAULT_YASTREAM_USER_AGENTYastream › Default User Agent string — Default User-Agent for the yastream addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description STREAMASIA_URLStreamasia › URL list ["https://stremio-dramacool-addon.xyz"]Upstream URL(s) for the StreamAsia addon. DEFAULT_STREAMASIA_TIMEOUTStreamasia › Default Timeout number — Default timeout for the StreamAsia addon (milliseconds). Falls back to the global default when unset. DEFAULT_STREAMASIA_USER_AGENTStreamasia › Default User Agent string — Default User-Agent for the StreamAsia addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description MORE_LIKE_THIS_URLMore Like This › URL list ["https://bbab4a35b833-more-like-this.baby-beamup.club"]Upstream URL(s) for the More Like This addon. DEFAULT_MORE_LIKE_THIS_TIMEOUTMore Like This › Default Timeout number — Default timeout for the More Like This addon (milliseconds). Falls back to the global default when unset. DEFAULT_MORE_LIKE_THIS_USER_AGENTMore Like This › Default User Agent string — Default User-Agent for the More Like This addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description CONTENT_DEEP_DIVE_URLContent Deep Dive › URL list ["https://stremio-content-deepdive-addon-dc8f7b513289.herokuapp.com"]Upstream URL(s) for the Content Deep Dive addon. DEFAULT_CONTENT_DEEP_DIVE_TIMEOUTContent Deep Dive › Default Timeout number — Default timeout for the Content Deep Dive addon (milliseconds). Falls back to the global default when unset. DEFAULT_CONTENT_DEEP_DIVE_USER_AGENTContent Deep Dive › Default User Agent string — Default User-Agent for the Content Deep Dive addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description AI_COMPANION_URLAi Companion › URL list ["https://ai-companion.saladprecedestretch123.uk"]Upstream URL(s) for the AI Companion addon. DEFAULT_AI_COMPANION_TIMEOUTAi Companion › Default Timeout number — Default timeout for the AI Companion addon (milliseconds). Falls back to the global default when unset. DEFAULT_AI_COMPANION_USER_AGENTAi Companion › Default User Agent string — Default User-Agent for the AI Companion addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description ASTREAM_URLAstream › URL list ["https://astream.stremiofr.com"]Upstream URL(s) for the AStream addon. DEFAULT_ASTREAM_TIMEOUTAstream › Default Timeout number — Default timeout for the AStream addon (milliseconds). Falls back to the global default when unset. DEFAULT_ASTREAM_USER_AGENTAstream › Default User Agent string — Default User-Agent for the AStream addon. Supports {version}/{random} placeholders.
Environment Variable UI Setting Type Default Description BUILTIN_STREMTHRU_URLStremthru › URL string https://stremthru.13377001.xyzBase URL of the StremThru instance used by the built-in addons. TORBOX_USENET_VIA_STREMTHRUStremthru › Torbox Usenet Via Stremthru boolean falseRoute Torbox usenet operations entirely through StremThru rather than the Torbox API. (restart required)
Environment Variable UI Setting Type Default Description BUILTIN_DEBRID_INSTANT_AVAILABILITY_CACHE_TTLDebrid › Instant Availability Cache TTL duration 1800Cache TTL for instant-availability checks. BUILTIN_DEBRID_PLAYBACK_LINK_CACHE_TTLDebrid › Playback Link Cache TTL duration 3600Cache TTL for resolved playback links. BUILTIN_DEBRID_ERROR_CACHE_TTLDebrid › Error Cache TTL duration 3600How long content-level failures (e.g. download status = failed/invalid) are cached globally to suppress retries. BUILTIN_DEBRID_LIBRARY_CACHE_TTLDebrid › Library Cache TTL duration 604800Cache TTL for library list results (listMagnets/listNzbs). BUILTIN_DEBRID_LIBRARY_STALE_THRESHOLDDebrid › Library Stale Threshold duration 600Time after which cached library data is treated as stale (background refresh while serving cached data). BUILTIN_DEBRID_LIBRARY_PAGE_LIMITDebrid › Library Page Limit number 1Maximum pages fetched per listMagnets / listNzbs request. BUILTIN_DEBRID_LIBRARY_PAGE_SIZEDebrid › Library Page Size number 500Maximum items per page when listing library items. StremThru caps at 500, Torbox at 1000. BUILTIN_DEBRID_USE_TORRENT_DOWNLOAD_URLDebrid › Use Torrent Download URL boolean truePrefer .torrent URLs over magnets for better private-tracker compatibility. BUILTIN_DEBRID_METADATA_STOREDebrid › Metadata Store enum — Backend used to persist debrid metadata. Defaults to the platform-default when unset. (restart required) BUILTIN_DEBRID_FILEINFO_STOREDebrid › Fileinfo Store json trueBackend (or true/false) used for the debrid fileinfo store. (restart required) BUILTIN_PLAYBACK_LINK_VALIDITYDebrid › Playback Link Validity duration 86400How long a generated playback link is treated as valid (seconds). BUILTIN_DOWNLOAD_POLL_INTERVALDebrid › Download Poll Interval map {"nzbdav":2000,"altmount":2000,"stremthru_newz":2000,"*":10000}Per-service download-status poll interval. Env shape: service:duration,.... Wildcard * covers unlisted services. BUILTIN_DOWNLOAD_MAX_WAIT_TIMEDebrid › Download Max Wait Time map {"nzbdav":90000,"altmount":90000,"stremthru_newz":90000,"*":120000}Per-service maximum wait time before timing out a download check. Env shape: service:duration,....
Environment Variable UI Setting Type Default Description BUILTIN_SCRAPE_WITH_ALL_TITLESScrape › With All Titles boolOrList falseBy default, built-in addons only use the primary title for text-based queries. true enables all alternative titles for every indexer; false (default) uses the primary title only; a comma-separated hostname list (e.g. jackett,knaben.org) enables it only for those indexers. Superseded per-indexer by BUILTIN_SCRAPE_TITLE_LANGUAGES. BUILTIN_SCRAPE_TITLE_LANGUAGESScrape › Title Languages map — Fine-grained alternative-title control, per indexer hostname, indexer name, or addon type. Supersedes BUILTIN_SCRAPE_WITH_ALL_TITLES. Format: <key>:<spec>[,<spec>...][,<key>:<spec>...]. Keys (checked in priority order): exact indexer hostname (e.g. my-indexer.com); auto-extracted indexer name (Jackett /api/v2.0/indexers/<name>/..., NZBHydra2 ?indexers=<name>); addon-id (newznab, torznab, easynews, knaben, prowlarr, torrent-galaxy); * wildcard fallback. Specs: default (primary/English-style title), all (all alternative titles up to BUILTIN_SCRAPE_TITLE_LIMIT), original (TMDB original-language title), <lang> (ISO 639-1 code, e.g. de, fr). Multiple specs under one key are combined (duplicates removed); only the highest-priority matching key applies; always falls back to the primary title. Examples: *:default,original — every indexer gets default + TMDB original-language title. *:default,newznab:default,original,de — newznab indexers query English + original + German, others English only. *:default,germanindexer.com:de,default — germanindexer.com queries German + English, all others English only. BUILTIN_SCRAPE_TITLE_LIMITScrape › Title Limit number 3Maximum alternative titles used per scrape. BUILTIN_SCRAPE_QUERY_CONCURRENCYScrape › Query Concurrency number 5Maximum concurrent scrape queries.
Environment Variable UI Setting Type Default Description BUILTIN_GET_TORRENT_TIMEOUTGet Torrent › Timeout number 5000Timeout for fetching torrent files. BUILTIN_GET_TORRENT_CONCURRENCYGet Torrent › Concurrency number 100Maximum concurrent torrent fetches. BUILTIN_GET_TORRENT_LAZILYGet Torrent › Lazily boolean trueFetch torrents lazily in the background. First search returns immediately with available results.
Environment Variable UI Setting Type Default Description BUILTIN_TORRENT_METADATA_CACHE_TTLTorrent › Metadata Cache TTL duration 604800Cache TTL for torrent metadata. BUILTIN_MINIMUM_BACKGROUND_REFRESH_INTERVALTorrent › Minimum Background Refresh Interval duration 86400Minimum interval between background search-cache refreshes triggered during normal searches.
Environment Variable UI Setting Type Default Description BUILTIN_GDRIVE_CLIENT_IDGDrive › Client ID string — OAuth client ID for the Google Drive built-in addon. BUILTIN_GDRIVE_CLIENT_SECRETGDrive › Client Secret string (unset) OAuth client secret for the Google Drive built-in addon. (secret) BUILTIN_GDRIVE_TIMEOUTGDrive › Timeout number — Timeout for Google Drive requests. BUILTIN_GDRIVE_USER_AGENTGDrive › User Agent string — User-Agent for Google Drive requests. BUILTIN_GDRIVE_PAGE_SIZE_LIMITGDrive › Page Size Limit number 1000Maximum items per page from Google Drive API.
Environment Variable UI Setting Type Default Description BUILTIN_TORBOX_SEARCH_TIMEOUTTorbox Search › Timeout number — Timeout for Torbox Search requests. BUILTIN_TORBOX_SEARCH_USER_AGENTTorbox Search › User Agent string — User-Agent for Torbox Search requests. BUILTIN_TORBOX_SEARCH_SEARCH_API_TIMEOUTTorbox Search › Search API Timeout number 30000Timeout for the Torbox /search API. BUILTIN_TORBOX_SEARCH_SEARCH_API_CACHE_TTLTorbox Search › Search API Cache TTL duration 604800Cache TTL for /search responses. BUILTIN_TORBOX_SEARCH_METADATA_CACHE_TTLTorbox Search › Metadata Cache TTL duration 1209600Cache TTL for Torbox Search metadata. BUILTIN_TORBOX_SEARCH_CACHE_PER_USER_SEARCH_ENGINETorbox Search › Cache Per User Search Engine boolean falseCache search results separately per user when they bring their own search engine.
Environment Variable UI Setting Type Default Description BUILTIN_NAB_SEARCH_TIMEOUTNAB › Search Timeout number 30000Timeout for Newznab/Torznab search calls. BUILTIN_NAB_SEARCH_CACHE_TTLNAB › Search Cache TTL duration 604800Cache TTL for Newznab/Torznab search results. BUILTIN_NAB_CAPABILITIES_CACHE_TTLNAB › Capabilities Cache TTL duration 1209600Cache TTL for Newznab/Torznab capabilities responses. BUILTIN_NAB_USER_AGENTNAB › User Agent string — User-Agent for Newznab/Torznab requests. BUILTIN_NAB_HTTP_PROXYNAB › HTTP Proxy map — Per-protocol HTTP proxy override (torznab:URL,newznab:URL). Overrides the global addon proxy. BUILTIN_NAB_MAX_PAGESNAB › Max Pages number 5Maximum pages to fetch when paginating Newznab/Torznab results.
Environment Variable UI Setting Type Default Description BUILTIN_ZILEAN_URLZilean › URL string https://zileanfortheweebs.midnightignite.meBase URL for the Zilean built-in addon. BUILTIN_DEFAULT_ZILEAN_TIMEOUTZilean › Timeout number — Timeout for Zilean requests.
Environment Variable UI Setting Type Default Description BUILTIN_ANIMETOSHO_URLAnimetosho › URL string https://feed.animetosho.orgBase URL for the AnimeTosho built-in addon. BUILTIN_DEFAULT_ANIMETOSHO_TIMEOUTAnimetosho › Timeout number — Timeout for AnimeTosho requests.
Environment Variable UI Setting Type Default Description BUILTIN_NEKOBT_URLNekobt › URL string https://nekobt.to/api/torznabBase URL for the NekoBT built-in addon. BUILTIN_DEFAULT_NEKOBT_TIMEOUTNekobt › Timeout number — Timeout for NekoBT requests.
Environment Variable UI Setting Type Default Description BUILTIN_SEADEX_URLSeadex › URL string https://releases.moeBase URL for the SeaDex built-in addon. BUILTIN_SEADEX_DATASET_REFRESH_INTERVALSeadex › Dataset Refresh Interval duration 86400How often the SeaDex dataset is refreshed. (restart required)
Environment Variable UI Setting Type Default Description BUILTIN_BITMAGNET_URLBitmagnet › URL string — Base URL for the Bitmagnet built-in addon. BUILTIN_DEFAULT_BITMAGNET_TIMEOUTBitmagnet › Timeout number — Timeout for Bitmagnet requests.
Environment Variable UI Setting Type Default Description BUILTIN_JACKETT_URLJackett › URL string — Base URL for the Jackett built-in addon. BUILTIN_JACKETT_API_KEYJackett › API Key string (unset) API key for the Jackett built-in addon. (secret) BUILTIN_DEFAULT_JACKETT_TIMEOUTJackett › Timeout number — Timeout for Jackett requests.
Environment Variable UI Setting Type Default Description BUILTIN_NZBHYDRA_URLNzbhydra › URL string — Base URL for the NZBHydra built-in addon. BUILTIN_NZBHYDRA_API_KEYNzbhydra › API Key string (unset) API key for the NZBHydra built-in addon. (secret) BUILTIN_DEFAULT_NZBHYDRA_TIMEOUTNzbhydra › Timeout number — Timeout for NZBHydra requests.
Environment Variable UI Setting Type Default Description BUILTIN_PROWLARR_URLProwlarr › URL string — Base URL for the Prowlarr built-in addon. BUILTIN_PROWLARR_API_KEYProwlarr › API Key string (unset) API key for the Prowlarr built-in addon. (secret) BUILTIN_PROWLARR_INDEXERSProwlarr › Indexers list — Comma-separated list of Prowlarr indexers to query. BUILTIN_DEFAULT_PROWLARR_TIMEOUTProwlarr › Default Timeout number — Default timeout for Prowlarr requests. BUILTIN_PROWLARR_SEARCH_TIMEOUTProwlarr › Search Timeout number 30000Timeout for Prowlarr search requests. BUILTIN_PROWLARR_SEARCH_CACHE_TTLProwlarr › Search Cache TTL duration 604800Cache TTL for Prowlarr search results. BUILTIN_PROWLARR_INDEXERS_CACHE_TTLProwlarr › Indexers Cache TTL duration 1209600Cache TTL for the Prowlarr indexers list.
Environment Variable UI Setting Type Default Description BUILTIN_DEFAULT_KNABEN_TIMEOUTKnaben › Default Timeout number — Default timeout for Knaben requests. BUILTIN_KNABEN_SEARCH_TIMEOUTKnaben › Search Timeout number 30000Timeout for Knaben search requests. BUILTIN_KNABEN_DOWNLOAD_TORRENTSKnaben › Download Torrents boolean trueWhen true, attempt to fetch .torrent files for Knaben results without an infohash. BUILTIN_KNABEN_SEARCH_CACHE_TTLKnaben › Search Cache TTL duration 604800Cache TTL for Knaben search results.
Environment Variable UI Setting Type Default Description BUILTIN_EASYNEWS_SEARCH_TIMEOUTEasynews › Search Timeout number 30000Timeout for Easynews search requests. BUILTIN_EASYNEWS_SEARCH_CACHE_TTLEasynews › Search Cache TTL duration 3600Cache TTL for Easynews search results. Defaults to 1h since Easynews content rotates more frequently. BUILTIN_EASYNEWS_SEARCH_MAX_PAGESEasynews › Max Pages number 5Maximum pages fetched when paginating Easynews search results.
Environment Variable UI Setting Type Default Description BUILTIN_TORRENT_GALAXY_URLTorrent Galaxy › URL string https://torrentgalaxy.oneBase URL for the Torrent Galaxy built-in addon. BUILTIN_DEFAULT_TORRENT_GALAXY_TIMEOUTTorrent Galaxy › Default Timeout number — Default timeout for Torrent Galaxy requests. BUILTIN_TORRENT_GALAXY_SEARCH_TIMEOUTTorrent Galaxy › Search Timeout number 30000Timeout for Torrent Galaxy search requests. BUILTIN_TORRENT_GALAXY_SEARCH_CACHE_TTLTorrent Galaxy › Search Cache TTL duration 604800Cache TTL for Torrent Galaxy search results. BUILTIN_TORRENT_GALAXY_PAGE_LIMITTorrent Galaxy › Page Limit number 5Maximum pages fetched when paginating Torrent Galaxy results.
Environment Variable UI Setting Type Default Description BUILTIN_EZTV_URLEztv › URL string https://eztvx.toBase URL for the EZTV built-in addon. BUILTIN_DEFAULT_EZTV_TIMEOUTEztv › Default Timeout number — Default timeout for EZTV requests. BUILTIN_EZTV_SEARCH_TIMEOUTEztv › Search Timeout number 30000Timeout for EZTV search requests. BUILTIN_EZTV_SEARCH_CACHE_TTLEztv › Search Cache TTL duration 604800Cache TTL for EZTV search results. BUILTIN_EZTV_MAX_PAGESEztv › Max Pages number 5Maximum pages fetched when paginating EZTV results.
Environment Variable UI Setting Type Default Description POSTER_API_KEY_VALIDITY_CACHE_TTLAPI Key Validity Cache TTL number 604800How long an RPDB / poster-API key validity check is cached (seconds).
Environment Variable UI Setting Type Default Description STREAM_URL_MAPPINGSStream URL Mappings map — Origin-level rewrites applied to stream URLs returned to clients. JSON object of {origin: replacement} URLs.
Environment Variable UI Setting Type Default Description MANIFEST_TIMEOUTTimeouts › Manifest number 3000Timeout for /manifest.json fetches (milliseconds). Slower manifest operations use the increased timeout below. MANIFEST_INCREASED_TIMEOUTTimeouts › Manifest Increased number 10000Extended timeout used during slower manifest operations (milliseconds). META_TIMEOUTTimeouts › Meta number 30000Timeout for /meta requests (milliseconds). CATALOG_TIMEOUTTimeouts › Catalog number 30000Timeout for /catalog/* fetches (milliseconds).
Environment Variable UI Setting Type Default Description PRECACHE_NEXT_EPISODE_MIN_INTERVALPrecache › Next Episode Min Interval duration 86400Minimum interval before re-attempting to precache the same next episode (accepts e.g. "30m", "1h").
Environment Variable UI Setting Type Default Description PRELOAD_MIN_INTERVALPreload › Min Interval duration 3600Minimum interval between preload operations for the same item per user (0 disables the cooldown). PRELOAD_STREAMS_CONCURRENCYPreload › Streams Concurrency number 5Maximum simultaneous stream preload requests.
Environment Variable UI Setting Type Default Description BACKGROUND_RESOURCE_REQUESTS_ENABLEDBackground › Enabled boolean trueIssue resource requests in the background to keep caches warm. BACKGROUND_RESOURCE_REQUEST_TIMEOUTBackground › Timeout number — Timeout for background resource requests (milliseconds). When unset, the maximum HTTP timeout is used.
Environment Variable UI Setting Type Default Description DEFAULT_MAX_CACHE_SIZECache › Default Max Size number 100000Default maximum number of items per cache instance. (restart required) SQL_CACHE_MAX_SIZECache › Sql Max Size number 100000Maximum number of items in the shared SQL cache. (restart required) MANIFEST_CACHE_TTLCache › Manifest › TTL map {"*":21600}Per-key cache TTL for manifest responses (seconds; -1 disables). Env shape: integer or key:value,.... MANIFEST_CACHE_MAX_SIZECache › Manifest › Max Size number — Maximum number of cached manifests. (restart required) SUBTITLE_CACHE_TTLCache › Subtitle › TTL map {"*":300}Per-key cache TTL for subtitle responses (seconds; -1 disables). SUBTITLE_CACHE_MAX_SIZECache › Subtitle › Max Size number — Maximum number of cached subtitle responses. (restart required) STREAM_CACHE_TTLCache › Stream › TTL map {"*":-1}Per-key cache TTL for stream responses (seconds; -1 disables, the default). STREAM_CACHE_MAX_SIZECache › Stream › Max Size number — Maximum number of cached stream responses. (restart required) CATALOG_CACHE_TTLCache › Catalog › TTL map {"*":300}Per-key cache TTL for catalog responses (seconds; -1 disables). CATALOG_CACHE_MAX_SIZECache › Catalog › Max Size number 1000Maximum number of cached catalog responses. (restart required) META_CACHE_TTLCache › Meta › TTL map {"*":300}Per-key cache TTL for meta responses (seconds; -1 disables). META_CACHE_MAX_SIZECache › Meta › Max Size number — Maximum number of cached meta responses. (restart required) ADDON_CATALOG_CACHE_TTLCache › Addon Catalog › TTL map {"*":300}Per-key cache TTL for addon-catalog responses (seconds; -1 disables). ADDON_CATALOG_CACHE_MAX_SIZECache › Addon Catalog › Max Size number — Maximum number of cached addon-catalog responses. (restart required)
Environment Variable UI Setting Type Default Description MAX_ADDONSMax Addons number 15Maximum number of addons a user configuration can install. MAX_KEYWORD_FILTERSMax Keyword Filters number 30Maximum number of keyword filters per keyword filter group. MAX_FORMATTER_TEMPLATE_LENGTHMax Formatter Template Length number 5000Maximum length (characters) of a single formatter template string. Enforced during config validation. MAX_NZB_FAILOVER_COUNTMax NZB Failover Count number 5Maximum NZB failover attempts a user can configure. MAX_GROUPSMax Groups number 20Maximum number of stream groups in a user configuration. MAX_MERGED_CATALOG_SOURCESMax Merged Catalog Sources number 10Maximum source catalogs in a single merged catalog. MAX_BACKGROUND_PINGSMax Background Pings number 2Maximum streams pinged in a background preload/precache operation.
Environment Variable UI Setting Type Default Description MIN_TIMEOUTTimeouts › Min Timeout number 1000Lower bound (milliseconds) for any user-configurable HTTP timeout. MAX_TIMEOUTTimeouts › Max Timeout number 50000Upper bound (milliseconds) for any user-configurable HTTP timeout.
Environment Variable UI Setting Type Default Description REGEX_FILTER_ACCESSRegex › Access enum trustedWho can use regex filters: "none", "trusted" (only trusted UUIDs), or "all". WHITELISTED_REGEX_PATTERNSRegex › Patterns list — Regex patterns whitelisted for non-trusted users. WHITELISTED_REGEX_PATTERNS_URLSRegex › Patterns Urls list — URLs from which to fetch additional whitelisted regex patterns periodically. WHITELISTED_REGEX_PATTERNS_DESCRIPTIONRegex › Patterns Description string — Free-form description shown alongside the whitelisted regex patterns.
Environment Variable UI Setting Type Default Description SEL_SYNC_ACCESSSEL › Access enum trusted"all" = anyone can sync from any URL; "trusted" = non-trusted users limited to whitelisted SEL URLs. WHITELISTED_SEL_URLSSEL › Urls list — Stream Expression Language sync URLs that non-trusted users may use. MAX_STREAM_EXPRESSIONSSEL › Max Expressions number 200Maximum total stream expressions across all filter types. MAX_STREAM_EXPRESSIONS_TOTAL_CHARACTERSSEL › Max Expression Characters number 50000Maximum total character count across all stream expressions. MAX_SEL_LENGTHSEL › Max Expression Length number 3000Maximum length (characters) of a single stream expression. Enforced during config validation.
Environment Variable UI Setting Type Default Description WHITELISTED_SYNC_REFRESH_INTERVALSync › Refresh Interval duration 86400How often whitelisted regex/SEL sync URLs are refreshed (accepts e.g. "5m", "1h"). (restart required)
Environment Variable UI Setting Type Default Description DISABLED_ADDONSDisabled › Addons map — Map of disabled addon IDs to a reason. Env-supplied form: comma-separated "addon:reason" entries. REMOVED_ADDONSDisabled › Removed Addons map — Map of removed addon IDs (hidden from marketplace; errors on save) to a reason. Env-supplied form: comma-separated "addon:reason" entries. DISABLED_SERVICESDisabled › Services map — Map of disabled service IDs to a reason. Env-supplied form: comma-separated "service:reason" entries. DISABLED_HOSTSDisabled › Hosts map — Map of disabled hostnames to a reason. Env-supplied form: comma-separated "host:reason" entries. DISABLED_STREAM_TYPESDisabled › Stream Types list — Stream types that should never be returned to clients (e.g. p2p, http, live).
Environment Variable UI Setting Type Default Description DISABLE_SELF_SCRAPINGSelf Scraping › Disabled boolean trueWhen true, addons cannot scrape the same AIOStreams instance.
Environment Variable UI Setting Type Default Description TRUSTED_UUIDSTrusted › Uuids string — Comma-separated list of trusted user UUIDs. Trusted users may use regex filters and bypass certain access policies.
Environment Variable UI Setting Type Default Description RECURSION_THRESHOLD_LIMITThreshold Limit number 60Maximum number of requests to the same URL within the threshold window before marking the chain as recursive. RECURSION_THRESHOLD_WINDOWThreshold Window duration 10Time window for the recursion threshold (seconds; accepts e.g. "30s", "1m").
Environment Variable UI Setting Type Default Description PRUNE_INTERVALPruning › Interval duration 86400How often to run the inactive-user pruning task (accepts e.g. "12h", "1d"). (restart required) PRUNE_MAX_DAYSPruning › Max Days number -1Days of inactivity before a user is pruned. Use -1 to disable pruning entirely.
Environment Variable UI Setting Type Default Description ANALYTICS_ENABLEDEnabled boolean trueWhen false, all request analytics collection is disabled — zero events are written. USER_ANALYTICS_ENABLEDUser Analytics Enabled boolean falseWhen enabled, the configure-page "Stats" tab is available to every authenticated user. Adds one event per addon per stream request. ANALYTICS_EVENT_RETENTION_DAYSEvent Retention Days number 7How many days of raw per-request analytics events to keep before the rollup task prunes them. The per-user Stats tab is limited to this window. ANALYTICS_DAILY_RETENTION_DAYSDaily Retention Days number 90How many days of aggregated daily analytics to keep.