General#
These settings adjust the general behaviour for how Jellyseerr is accessed, and discovers content.
jellyseerr:
  settings:
    general:
      application_title: "Jellyseerr"
      application_url: null
      enable_proxy_support: false
      enable_csrf_protection: false
      enable_image_caching: false
      display_language: "en"
      discover_region: null
      discover_languages: []
      hide_available_media: false
      allow_partial_series_requests: true
          application_title: NonEmptyStr = 'Jellyseerr'
  
  
      class-attribute
      instance-attribute
  
#
  Name of the Jellyseerr instance, as shown in the browser title.
          application_url: Optional[AnyHttpUrl] = None
  
  
      class-attribute
      instance-attribute
  
#
  Application URL to use when generating links to Jellyseerr.
If set to null, use the URL the browser is currently using to access Jellyseerr.
          enable_proxy_support: bool = False
  
  
      class-attribute
      instance-attribute
  
#
  Allow Jellyseerr to correctly register client IP addresses behind a proxy.
When this attribute is changed, a restart of Jellyseerr is required.
          enable_csrf_protection: bool = False
  
  
      class-attribute
      instance-attribute
  
#
  Set external API access to read-only (requires HTTPS).
When this attribute is changed, a restart of Jellyseerr is required.
          enable_image_caching: bool = False
  
  
      class-attribute
      instance-attribute
  
#
  Cache externally sourced images.
Take care when enabling this option, as this requires a significant amount of disk space.
          display_language: LowerCaseNonEmptyStr = 'en'
  
  
      class-attribute
      instance-attribute
  
#
  The display language of the Jellyseerr UI.
Use the ISO 639-1 two-character language code when defining this attribute.
          discover_region: Optional[UpperCaseStr] = None
  
  
      class-attribute
      instance-attribute
  
#
  Filter content by regional availability.
If set to null, discovers content for all regions.
Use the ISO 3166-1 two-character country code when defining this attribute.
          discover_languages: Set[LowerCaseStr] = set()
  
  
      class-attribute
      instance-attribute
  
#
  Filter content by original language.
If empty, discovers all languages.
Use ISO 639-1 two-character language codes when defining this attribute.
          hide_available_media: bool = False
  
  
      class-attribute
      instance-attribute
  
#
  Hide content that is already available in the media library in the UI.
          allow_partial_series_requests: bool = True
  
  
      class-attribute
      instance-attribute
  
#
  Allow making media requests for only part of a series.