diff --git a/apps/aiostreams/.env b/apps/aiostreams/.env index 1a93196..3ec78f4 100644 --- a/apps/aiostreams/.env +++ b/apps/aiostreams/.env @@ -61,7 +61,7 @@ ADDON_PASSWORD= # (You can change './data/db.sqlite' to your preferred path) # # PostgreSQL example: -# DATABASE_URI=postgresql://username:password@host:port/database_name +# DATABASE_URI=postgres://username:password@host:port/database_name # (e.g., postgresql://postgres:password@localhost:5432/aiostreams) DATABASE_URI=sqlite://./data/db.sqlite @@ -309,6 +309,13 @@ FORCE_PROXY_DISABLE_PROXIED_ADDONS=false ENCRYPT_MEDIAFLOW_URLS=true ENCRYPT_STREMTHRU_URLS=true +# --- Forced Public proxy URL adjustments ---- +# If you'd like to force some adjustments to be made to the streaming urls generated by either proxy, you can do that here. +# This is useful when you want to use a local url for requests but have AIOStreams force the urls to use a specific host, port, and protocol. +# FORCE_PUBLIC_PROXY_HOST= +# FORCE_PUBLIC_PROXY_PORT= +# FORCE_PUBLIC_PROXY_PROTOCOL= + # ============================================================================== # ADVANCED CONFIGURATION & LIMITS @@ -399,8 +406,9 @@ PRUNE_INTERVAL=86400 # --- Prune Max Inactivity Days --- # Maximum days of inactivity before a user's configuration is pruned. -# Default: 30 -PRUNE_MAX_DAYS=30 +# Set to -1 to disable +# Default: -1 +PRUNE_MAX_DAYS=-1 # ==============================================================================