Skip to content
Snippets Groups Projects
sample_config.yaml 94.9 KiB
Newer Older
  • Learn to ignore specific revisions
  • # This file is maintained as an up-to-date snapshot of the default
    
    # homeserver.yaml configuration generated by Synapse.
    
    # It is intended to act as a reference for the default configuration,
    # helping admins keep track of new options and other changes, and compare
    # their configs with the current default.  As such, many of the actual
    # config values shown are placeholders.
    #
    # It is *not* intended to be copied and used as the basis for a real
    # homeserver.yaml. Instead, if you are starting from scratch, please generate
    
    # a fresh config using Synapse by following the instructions in
    # https://matrix-org.github.io/synapse/latest/setup/installation.html.
    
    # Configuration options that take a time period can be set using a number
    # followed by a letter. Letters have the following meanings:
    # s = second
    # m = minute
    # h = hour
    # d = day
    # w = week
    # y = year
    # For example, setting redaction_retention_period: 5m would remove redacted
    # messages from the database after 5 minutes, rather than 5 months.
    
    
    ################################################################################
    
    # Configuration file for Synapse.
    #
    # This is a YAML file: see [1] for a quick introduction. Note in particular
    # that *indentation is important*: all the elements of a list or dictionary
    # should have the same indentation.
    #
    # [1] https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html
    
    
    
    ## Modules ##
    
    # Server admins can expand Synapse's functionality with external modules.
    #
    
    # See https://matrix-org.github.io/synapse/latest/modules/index.html for more
    
    # documentation on how to configure or create custom modules for Synapse.
    #
    modules:
    
      #- module: my_super_module.MySuperClass
      #  config:
      #    do_thing: true
      #- module: my_other_super_module.SomeClass
      #  config: {}
    
    # The public-facing domain of the server
    #
    # The server_name name will appear at the end of usernames and room addresses
    # created on this server. For example if the server_name was example.com,
    # usernames on this server would be in the format @user:example.com
    #
    # In most cases you should avoid using a matrix specific subdomain such as
    # matrix.example.com or synapse.example.com as the server_name for the same
    # reasons you wouldn't use user@email.example.com as your email address.
    
    # See https://matrix-org.github.io/synapse/latest/delegate.html
    
    # for information on how to host Synapse on a subdomain while preserving
    # a clean server_name.
    #
    # The server_name cannot be changed later so it is important to
    # configure this correctly before you start Synapse. It should be all
    # lowercase and may contain an explicit port.
    # Examples: matrix.org, localhost:8080
    
    #
    server_name: "SERVERNAME"
    
    # When running as a daemon, the file to store the pid in
    #
    pid_file: DATADIR/homeserver.pid
    
    
    # The absolute URL to the web client which / will redirect to.
    
    #
    #web_client_location: https://riot.example.com/
    
    # The public-facing base URL that clients use to access this Homeserver (not
    # including _matrix/...). This is the same URL a user might enter into the
    # 'Custom Homeserver URL' field on their client. If you use Synapse with a
    # reverse proxy, this should be the URL to reach Synapse via the proxy.
    # Otherwise, it should be the URL to reach Synapse's client HTTP listener (see
    # 'listeners' below).
    #
    
    # Defaults to 'https://<server_name>/'.
    #
    
    # Uncomment the following to tell other servers to send federation traffic on
    # port 443.
    #
    # By default, other servers will try to reach our server on port 8448, which can
    # be inconvenient in some environments.
    #
    # Provided 'https://<server_name>/' on port 443 is routed to Synapse, this
    # option configures Synapse to serve a file at
    # 'https://<server_name>/.well-known/matrix/server'. This will tell other
    # servers to send traffic to port 443 instead.
    #
    # See https://matrix-org.github.io/synapse/latest/delegate.html for more
    # information.
    #
    # Defaults to 'false'.
    #
    #serve_server_wellknown: true
    
    
    # Set the soft limit on the number of file descriptors synapse can use
    # Zero is used to indicate synapse should set the soft limit to the
    # hard limit.
    #
    
    # Presence tracking allows users to see the state (e.g online/offline)
    # of other local and remote users.
    
    presence:
      # Uncomment to disable presence tracking on this homeserver. This option
      # replaces the previous top-level 'use_presence' option.
      #
      #enabled: false
    
    
    # Whether to require authentication to retrieve profile data (avatars,
    # display names) of other users through the client API. Defaults to
    # 'false'. Note that profile data is also available via the federation
    
    Erik Johnston's avatar
    Erik Johnston committed
    # API, unless allow_profile_lookup_over_federation is set to false.
    
    # Uncomment to require a user to share a room with another user in order
    # to retrieve their profile information. Only checked on Client-Server
    # requests. Profile requests from other servers should be checked by the
    # requesting server. Defaults to 'false'.
    #
    #limit_profile_requests_to_users_who_share_rooms: true
    
    
    # Uncomment to prevent a user's profile data from being retrieved and
    # displayed in a room until they have joined it. By default, a user's
    # profile data is included in an invite event, regardless of the values
    # of the above two settings, and whether or not the users share a server.
    # Defaults to 'true'.
    #
    #include_profile_data_on_invite: false
    
    
    # If set to 'true', removes the need for authentication to access the server's
    # public rooms directory through the client API, meaning that anyone can
    # query the room directory. Defaults to 'false'.
    
    #allow_public_rooms_without_auth: true
    
    # If set to 'true', allows any other homeserver to fetch the server's public
    # rooms directory via federation. Defaults to 'false'.
    
    #allow_public_rooms_over_federation: true
    
    # The default room version for newly created rooms.
    #
    # Known room versions are listed here:
    
    # https://spec.matrix.org/latest/rooms/#complete-list-of-room-versions
    
    #
    # For example, for room version 1, default_room_version should be set
    # to "1".
    
    #default_room_version: "6"
    
    # The GC threshold parameters to pass to `gc.set_threshold`, if defined
    #
    #gc_thresholds: [700, 10, 10]
    
    
    # The minimum time in seconds between each GC for a generation, regardless of
    # the GC thresholds. This ensures that we don't do GC too frequently.
    #
    # A value of `[1s, 10s, 30s]` indicates that a second must pass between consecutive
    # generation 0 GCs, etc.
    #
    # Defaults to `[1s, 10s, 30s]`.
    #
    #gc_min_interval: [0.5s, 30s, 1m]
    
    
    # Set the limit on the returned events in the timeline in the get
    
    # and sync operations. The default value is 100. -1 means no upper limit.
    #
    # Uncomment the following to increase the limit to 5000.
    
    #
    #filter_timeline_limit: 5000
    
    # Whether room invites to users on this server should be blocked
    # (except those sent by local server admins). The default is False.
    #
    
    #block_non_admin_invites: true
    
    
    # Room searching
    #
    # If disabled, new messages will not be indexed for searching and users
    # will receive errors when searching for messages. Defaults to enabled.
    #
    #enable_search: false
    
    
    # Prevent outgoing requests from being sent to the following blacklisted IP address
    # CIDR ranges. If this option is not specified then it defaults to private IP
    # address ranges (see the example below).
    #
    # The blacklist applies to the outbound requests for federation, identity servers,
    # push servers, and for checking key validity for third-party invite events.
    #
    # (0.0.0.0 and :: are always blacklisted, whether or not they are explicitly
    # listed here, since they correspond to unroutable addresses.)
    #
    # This option replaces federation_ip_range_blacklist in Synapse v1.25.0.
    #
    
    # Note: The value is ignored when an HTTP proxy is in use
    #
    
    #ip_range_blacklist:
    #  - '127.0.0.0/8'
    #  - '10.0.0.0/8'
    #  - '172.16.0.0/12'
    #  - '192.168.0.0/16'
    #  - '100.64.0.0/10'
    #  - '192.0.0.0/24'
    #  - '169.254.0.0/16'
    
    #  - '198.18.0.0/15'
    #  - '192.0.2.0/24'
    #  - '198.51.100.0/24'
    #  - '203.0.113.0/24'
    #  - '224.0.0.0/4'
    #  - '::1/128'
    #  - 'fe80::/10'
    #  - 'fc00::/7'
    
    #  - '2001:db8::/32'
    #  - 'ff00::/8'
    #  - 'fec0::/10'
    
    # List of IP address CIDR ranges that should be allowed for federation,
    # identity servers, push servers, and for checking key validity for
    # third-party invite events. This is useful for specifying exceptions to
    # wide-ranging blacklisted target IP ranges - e.g. for communication with
    # a push server only visible in your network.
    #
    # This whitelist overrides ip_range_blacklist and defaults to an empty
    # list.
    #
    #ip_range_whitelist:
    #   - '192.168.1.1'
    
    
    # List of ports that Synapse should listen on, their purpose and their
    # configuration.
    #
    # Options for each listener include:
    #
    #   port: the TCP port to bind to
    #
    #   bind_addresses: a list of local addresses to listen on. The default is
    #       'all local interfaces'.
    #
    #   type: the type of listener. Normally 'http', but other valid options are:
    
    #       'manhole' (see https://matrix-org.github.io/synapse/latest/manhole.html),
    #       'metrics' (see https://matrix-org.github.io/synapse/latest/metrics-howto.html),
    #       'replication' (see https://matrix-org.github.io/synapse/latest/workers.html).
    
    #
    #   tls: set to true to enable TLS for this listener. Will use the TLS
    #       key/cert specified in tls_private_key_path / tls_certificate_path.
    #
    #   x_forwarded: Only valid for an 'http' listener. Set to true to use the
    #       X-Forwarded-For header as the client IP. Useful when Synapse is
    #       behind a reverse-proxy.
    #
    #   resources: Only valid for an 'http' listener. A list of resources to host
    #       on this port. Options for each resource are:
    #
    #       names: a list of names of HTTP resources. See below for a list of
    #           valid resource names.
    #
    
    #       compress: set to true to enable HTTP compression for this resource.
    
    #
    #   additional_resources: Only valid for an 'http' listener. A map of
    #        additional endpoints which should be loaded via dynamic modules.
    #
    # Valid resource names are:
    #
    
    Richard van der Hoff's avatar
    Richard van der Hoff committed
    #   client: the client-server API (/_matrix/client), and the synapse admin
    #       API (/_synapse/admin). Also implies 'media' and 'static'.
    
    #   consent: user consent forms (/_matrix/consent).
    #       See https://matrix-org.github.io/synapse/latest/consent_tracking.html.
    
    #
    #   federation: the server-server API (/_matrix/federation). Also implies
    #       'media', 'keys', 'openid'
    #
    #   keys: the key discovery API (/_matrix/keys).
    #
    #   media: the media API (/_matrix/media).
    #
    
    #   metrics: the metrics interface.
    #       See https://matrix-org.github.io/synapse/latest/metrics-howto.html.
    
    #   replication: the HTTP replication API (/_synapse/replication).
    #       See https://matrix-org.github.io/synapse/latest/workers.html.
    
    #
    #   static: static resources under synapse/static (/_matrix/static). (Mostly
    #       useful for 'fallback authentication'.)
    #
    listeners:
      # TLS-enabled listener: for when matrix traffic is sent directly to synapse.
      #
      # Disabled by default. To enable it, uncomment the following. (Note that you
      # will also need to give Synapse a TLS key and certificate: see the TLS section
      # below.)
      #
      #- port: 8448
      #  type: http
      #  tls: true
      #  resources:
      #    - names: [client, federation]
    
      # Unsecure HTTP listener: for when matrix traffic passes through a reverse proxy
      # that unwraps TLS.
      #
      # If you plan to use a reverse proxy, please see
    
      # https://matrix-org.github.io/synapse/latest/reverse_proxy.html.
    
        bind_addresses: ['::1', '127.0.0.1']
    
    
        resources:
          - names: [client, federation]
            compress: false
    
    
        # example additional_resources:
    
        #
        #additional_resources:
        #  "/_matrix/my/custom/endpoint":
        #    module: my_module.CustomRequestHandler
        #    config: {}
    
      # Turn on the twisted ssh manhole service on localhost on the given
      # port.
      #
      #- port: 9000
      #  bind_addresses: ['::1', '127.0.0.1']
      #  type: manhole
    
    
    # Connection settings for the manhole
    #
    manhole_settings:
      # The username for the manhole. This defaults to 'matrix'.
      #
      #username: manhole
    
      # The password for the manhole. This defaults to 'rabbithole'.
      #
      #password: mypassword
    
      # The private and public SSH key pair used to encrypt the manhole traffic.
      # If these are left unset, then hardcoded and non-secret keys are used,
      # which could allow traffic to be intercepted if sent over a public network.
      #
      #ssh_priv_key_path: CONFDIR/id_rsa
      #ssh_pub_key_path: CONFDIR/id_rsa.pub
    
    
    # Forward extremities can build up in a room due to networking delays between
    # homeservers. Once this happens in a large room, calculation of the state of
    # that room can become quite expensive. To mitigate this, once the number of
    # forward extremities reaches a given threshold, Synapse will send an
    # org.matrix.dummy_event event, which will reduce the forward extremities
    # in the room.
    #
    # This setting defines the threshold (i.e. number of forward extremities in the
    # room) at which dummy events are sent. The default value is 10.
    #
    #dummy_events_threshold: 5
    
    
    
    ## Homeserver blocking ##
    
    # How to reach the server admin, used in ResourceLimitError
    #
    #admin_contact: 'mailto:admin@server.com'
    
    # Global blocking
    #
    
    #hs_disabled_message: 'Human readable reason for why the HS is blocked'
    
    # Monthly Active User Blocking
    #
    
    # Used in cases where the admin or server owner wants to limit to the
    # number of monthly active users.
    #
    # 'limit_usage_by_mau' disables/enables monthly active user blocking. When
    
    # enabled and a limit is reached the server returns a 'ResourceLimitError'
    
    # with error type Codes.RESOURCE_LIMIT_EXCEEDED
    #
    # 'max_mau_value' is the hard limit of monthly active users above which
    # the server will start blocking user actions.
    #
    # 'mau_trial_days' is a means to add a grace period for active users. It
    # means that users must be active for this number of days before they
    # can be considered active and guards against the case where lots of users
    # sign up in a short space of time never to return after their initial
    # session.
    #
    
    # 'mau_limit_alerting' is a means of limiting client side alerting
    # should the mau limit be reached. This is useful for small instances
    # where the admin has 5 mau seats (say) for 5 specific people and no
    # interest increasing the mau limit further. Defaults to True, which
    # means that alerting is enabled
    #
    
    #mau_limit_alerting: false
    
    
    # If enabled, the metrics for the number of monthly active users will
    # be populated, however no one will be limited. If limit_usage_by_mau
    # is true, this is implied to be true.
    #
    
    
    # Sometimes the server admin will want to ensure certain accounts are
    # never blocked by mau checking. These accounts are specified here.
    #
    #mau_limit_reserved_threepids:
    #  - medium: 'email'
    #    address: 'reserved_user@example.com'
    
    
    # Used by phonehome stats to group together related servers.
    #server_context: context
    
    
    # Resource-constrained homeserver settings
    
    # When this is enabled, the room "complexity" will be checked before a user
    # joins a new remote room. If it is above the complexity limit, the server will
    # disallow joining, or will instantly leave.
    
    # Room complexity is an arbitrary measure based on factors such as the number of
    # users in the room.
    
    limit_remote_rooms:
      # Uncomment to enable room complexity checking.
      #
      #enabled: true
    
      # the limit above which rooms cannot be joined. The default is 1.0.
      #
      #complexity: 0.5
    
      # override the error which is returned when the room is too complex.
      #
      #complexity_error: "This room is too complex."
    
      # allow server admins to join complex rooms. Default is false.
      #
      #admins_can_join: true
    
    
    # Whether to require a user to be in the room to add an alias to it.
    # Defaults to 'true'.
    #
    #require_membership_for_aliases: false
    
    
    # Whether to allow per-room membership profiles through the send of membership
    # events with profile information that differ from the target's global profile.
    # Defaults to 'true'.
    #
    #allow_per_room_profiles: false
    
    
    # The largest allowed file size for a user avatar. Defaults to no restriction.
    #
    # Note that user avatar changes will not work if this is set without
    # using Synapse's media repository.
    #
    #max_avatar_size: 10M
    
    # The MIME types allowed for user avatars. Defaults to no restriction.
    #
    # Note that user avatar changes will not work if this is set without
    # using Synapse's media repository.
    #
    #allowed_avatar_mimetypes: ["image/png", "image/jpeg", "image/gif"]
    
    
    # How long to keep redacted events in unredacted form in the database. After
    # this period redacted events get replaced with their redacted form in the DB.
    
    # Defaults to `7d`. Set to `null` to disable.
    #
    
    #redaction_retention_period: 28d
    
    # How long to track users' last seen time and IPs in the database.
    #
    
    Erik Johnston's avatar
    Erik Johnston committed
    # Defaults to `28d`. Set to `null` to disable clearing out of old rows.
    
    # Inhibits the /requestToken endpoints from returning an error that might leak
    # information about whether an e-mail address is in use or not on this
    # homeserver.
    # Note that for some endpoints the error situation is the e-mail already being
    # used, and for others the error is entering the e-mail being unused.
    # If this option is enabled, instead of returning an error, these endpoints will
    # act as if no error happened and return a fake session ID ('sid') to clients.
    #
    #request_token_inhibit_3pid_errors: true
    
    # A list of domains that the domain portion of 'next_link' parameters
    # must match.
    #
    # This parameter is optionally provided by clients while requesting
    # validation of an email or phone number, and maps to a link that
    # users will be automatically redirected to after validation
    # succeeds. Clients can make use this parameter to aid the validation
    # process.
    #
    # The whitelist is applied whether the homeserver or an
    # identity server is handling validation.
    #
    # The default value is no whitelist functionality; all domains are
    # allowed. Setting this value to an empty list will instead disallow
    # all domains.
    #
    #next_link_domain_whitelist: ["matrix.org"]
    
    # Templates to use when generating email or HTML page contents.
    #
    templates:
      # Directory in which Synapse will try to find template files to use to generate
      # email or HTML page contents.
      # If not set, or a file is not found within the template directory, a default
      # template from within the Synapse package will be used.
      #
      # See https://matrix-org.github.io/synapse/latest/templates.html for more
      # information about using custom templates.
      #
      #custom_template_directory: /path/to/custom/templates/
    
    
    
    # Message retention policy at the server level.
    #
    # Room admins and mods can define a retention period for their rooms using the
    # 'm.room.retention' state event, and server admins can cap this period by setting
    # the 'allowed_lifetime_min' and 'allowed_lifetime_max' config options.
    #
    # If this feature is enabled, Synapse will regularly look for and purge events
    # which are older than the room's maximum retention period. Synapse will also
    # filter events received over federation so that events that should have been
    # purged are ignored and not stored again.
    #
    retention:
      # The message retention policies feature is disabled by default. Uncomment the
      # following line to enable it.
      #
      #enabled: true
    
      # Default retention policy. If set, Synapse will apply it to rooms that lack the
      # 'm.room.retention' state event. Currently, the value of 'min_lifetime' doesn't
      # matter much because Synapse doesn't take it into account yet.
      #
      #default_policy:
      #  min_lifetime: 1d
      #  max_lifetime: 1y
    
    
      # Retention policy limits. If set, and the state of a room contains a
      # 'm.room.retention' event in its state which contains a 'min_lifetime' or a
      # 'max_lifetime' that's out of these bounds, Synapse will cap the room's policy
      # to these limits when running purge jobs.
    
      #
      #allowed_lifetime_min: 1d
      #allowed_lifetime_max: 1y
    
      # Server admins can define the settings of the background jobs purging the
      # events which lifetime has expired under the 'purge_jobs' section.
      #
      # If no configuration is provided, a single job will be set up to delete expired
      # events in every room daily.
      #
      # Each job's configuration defines which range of message lifetimes the job
      # takes care of. For example, if 'shortest_max_lifetime' is '2d' and
      # 'longest_max_lifetime' is '3d', the job will handle purging expired events in
      # rooms whose state defines a 'max_lifetime' that's both higher than 2 days, and
      # lower than or equal to 3 days. Both the minimum and the maximum value of a
      # range are optional, e.g. a job with no 'shortest_max_lifetime' and a
      # 'longest_max_lifetime' of '3d' will handle every room with a retention policy
      # which 'max_lifetime' is lower than or equal to three days.
      #
      # The rationale for this per-job configuration is that some rooms might have a
      # retention policy with a low 'max_lifetime', where history needs to be purged
    
    Brendan Abolivier's avatar
    Brendan Abolivier committed
      # of outdated messages on a more frequent basis than for the rest of the rooms
      # (e.g. every 12h), but not want that purge to be performed by a job that's
      # iterating over every room it knows, which could be heavy on the server.
    
      # If any purge job is configured, it is strongly recommended to have at least
      # a single job with neither 'shortest_max_lifetime' nor 'longest_max_lifetime'
      # set, or one job without 'shortest_max_lifetime' and one job without
      # 'longest_max_lifetime' set. Otherwise some rooms might be ignored, even if
      # 'allowed_lifetime_min' and 'allowed_lifetime_max' are set, because capping a
      # room's policy to these values is done after the policies are retrieved from
      # Synapse's database (which is done using the range specified in a purge job's
      # configuration).
      #
    
      #  - longest_max_lifetime: 3d
    
      #    interval: 12h
    
      #  - shortest_max_lifetime: 3d
    
      #    interval: 1d
    
    
    ## TLS ##
    
    # PEM-encoded X509 certificate for TLS.
    # This certificate, as of Synapse 1.0, will need to be a valid and verifiable
    # certificate, signed by a recognised Certificate Authority.
    #
    
    # Be sure to use a `.pem` file that includes the full certificate chain including
    # any intermediate certificates (for instance, if using certbot, use
    # `fullchain.pem` as your certificate, not `cert.pem`).
    
    #tls_certificate_path: "CONFDIR/SERVERNAME.tls.crt"
    
    # PEM-encoded private key for TLS
    #
    #tls_private_key_path: "CONFDIR/SERVERNAME.tls.key"
    
    
    # Whether to verify TLS server certificates for outbound federation requests.
    
    # Defaults to `true`. To disable certificate verification, uncomment the
    # following line.
    
    #federation_verify_certificates: false
    
    # The minimum TLS version that will be used for outbound federation requests.
    #
    # Defaults to `1`. Configurable to `1`, `1.1`, `1.2`, or `1.3`. Note
    # that setting this value higher than `1.2` will prevent federation to most
    # of the public Matrix network: only configure it to `1.3` if you have an
    # entirely private federation setup and you can ensure TLS 1.3 support.
    #
    #federation_client_minimum_tls_version: 1.2
    
    
    # Skip federation certificate verification on the following whitelist
    # of domains.
    #
    # This setting should only be used in very specific cases, such as
    # federation over Tor hidden services and similar. For private networks
    # of homeservers, you likely want to use a private CA instead.
    #
    # Only effective if federation_verify_certicates is `true`.
    #
    #federation_certificate_verification_whitelist:
    #  - lon.example.com
    
    
    # List of custom certificate authorities for federation traffic.
    #
    # This setting should only normally be used within a private network of
    # homeservers.
    #
    # Note that this list will replace those that are provided by your
    # operating environment. Certificates must be in PEM format.
    #
    #federation_custom_ca_list:
    #  - myCA1.pem
    #  - myCA2.pem
    #  - myCA3.pem
    
    
    # Restrict federation to the following whitelist of domains.
    # N.B. we recommend also firewalling your federation listener to limit
    # inbound federation traffic as early as possible, rather than relying
    # purely on this application-layer restriction.  If not specified, the
    # default is to whitelist everything.
    #
    #federation_domain_whitelist:
    #  - lon.example.com
    #  - nyc.example.com
    #  - syd.example.com
    
    
    # Report prometheus metrics on the age of PDUs being sent to and received from
    # the following domains. This can be used to give an idea of "delay" on inbound
    # and outbound federation, though be aware that any delay can be due to problems
    # at either end or with the intermediate network.
    #
    # By default, no domains are monitored in this way.
    #
    #federation_metrics_domains:
    #  - matrix.org
    #  - example.com
    
    
    # Uncomment to disable profile lookup over federation. By default, the
    # Federation API allows other homeservers to obtain profile data of any user
    # on this homeserver. Defaults to 'true'.
    #
    #allow_profile_lookup_over_federation: false
    
    
    # Uncomment to disable device display name lookup over federation. By default, the
    # Federation API allows other homeservers to obtain device display names of any user
    # on this homeserver. Defaults to 'true'.
    #
    #allow_device_name_lookup_over_federation: false
    
    
    ## Caching ##
    
    # Caching can be configured through the following options.
    #
    # A cache 'factor' is a multiplier that can be applied to each of
    # Synapse's caches in order to increase or decrease the maximum
    # number of entries that can be stored.
    
    # The number of events to cache in memory. Not affected by
    # caches.global_factor.
    #
    #event_cache_size: 10K
    
    caches:
    
      # Controls the global cache factor, which is the default cache factor
      # for all caches if a specific factor for that cache is not otherwise
      # set.
      #
      # This can also be set by the "SYNAPSE_CACHE_FACTOR" environment
      # variable. Setting by environment variable takes priority over
      # setting through the config file.
      #
      # Defaults to 0.5, which will half the size of all caches.
      #
      #global_factor: 1.0
    
      # A dictionary of cache name to cache factor for that individual
      # cache. Overrides the global cache factor for a given cache.
      #
      # These can also be set through environment variables comprised
      # of "SYNAPSE_CACHE_FACTOR_" + the name of the cache in capital
      # letters and underscores. Setting by environment variable
      # takes priority over setting through the config file.
      # Ex. SYNAPSE_CACHE_FACTOR_GET_USERS_WHO_SHARE_ROOM_WITH_USER=2.0
      #
      # Some caches have '*' and other characters that are not
      # alphanumeric or underscores. These caches can be named with or
      # without the special characters stripped. For example, to specify
      # the cache factor for `*stateGroupCache*` via an environment
      # variable would be `SYNAPSE_CACHE_FACTOR_STATEGROUPCACHE=2.0`.
      #
      per_cache_factors:
        #get_users_who_share_room_with_user: 2.0
    
    
      # Controls whether cache entries are evicted after a specified time
      # period. Defaults to true. Uncomment to disable this feature.
    
      #expire_caches: false
    
      # If expire_caches is enabled, this flag controls how long an entry can
      # be in a cache without having been accessed before being evicted.
      # Defaults to 30m. Uncomment to set a different time to live for cache entries.
      #
      #cache_entry_ttl: 30m
    
      # Controls how long the results of a /sync request are cached for after
      # a successful response is returned. A higher duration can help clients with
      # intermittent connections, at the cost of higher memory usage.
      #
      # By default, this is zero, which means that sync responses are not cached
      # at all.
      #
      #sync_response_cache_duration: 2m
    
    
    # The 'database' setting defines the database that synapse uses to store all of
    # its data.
    #
    # 'name' gives the database engine to use: either 'sqlite3' (for SQLite) or
    # 'psycopg2' (for PostgreSQL).
    #
    
    # 'txn_limit' gives the maximum number of transactions to run per connection
    # before reconnecting. Defaults to 0, which means no limit.
    #
    
    # 'args' gives options which are passed through to the database engine,
    # except for options starting 'cp_', which are used to configure the Twisted
    # connection pool. For a reference to valid arguments, see:
    #   * for sqlite: https://docs.python.org/3/library/sqlite3.html#sqlite3.connect
    #   * for postgres: https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-PARAMKEYWORDS
    #   * for the connection pool: https://twistedmatrix.com/documents/current/api/twisted.enterprise.adbapi.ConnectionPool.html#__init__
    #
    #
    # Example SQLite configuration:
    #
    #database:
    #  name: sqlite3
    #  args:
    #    database: /path/to/homeserver.db
    #
    #
    # Example Postgres configuration:
    #
    #database:
    #  name: psycopg2
    
    #    password: secretpassword
    #    database: synapse
    #    host: localhost
    
    # For more information on using Synapse with Postgres,
    # see https://matrix-org.github.io/synapse/latest/postgres.html.
    
        database: DATADIR/homeserver.db
    
    # A yaml python logging config file as described by
    # https://docs.python.org/3.7/library/logging.config.html#configuration-dictionary-schema
    
    #
    log_config: "CONFDIR/SERVERNAME.log.config"
    
    
    ## Ratelimiting ##
    
    
    # Ratelimiting settings for client actions (registration, login, messaging).
    
    #
    # Each ratelimiting configuration is made of two parameters:
    #   - per_second: number of requests a client can send per second.
    #   - burst_count: number of requests a client can send before being throttled.
    #
    # Synapse currently uses the following configurations:
    
    #   - one for messages that ratelimits sending based on the account the client
    #     is using
    
    #   - one for registration that ratelimits registration requests based on the
    #     client's IP address.
    
    #   - one for checking the validity of registration tokens that ratelimits
    #     requests based on the client's IP address.
    
    #   - one for login that ratelimits login requests based on the client's IP
    #     address.
    #   - one for login that ratelimits login requests based on the account the
    #     client is attempting to log into.
    
    #   - one for login that ratelimits login requests based on the account the
    #     client is attempting to log into, based on the amount of failed login
    #     attempts for this account.
    
    Erik Johnston's avatar
    Erik Johnston committed
    #   - one for ratelimiting redactions by room admins. If this is not explicitly
    #     set then it uses the same ratelimiting as per rc_message. This is useful
    
    Erik Johnston's avatar
    Erik Johnston committed
    #     to allow room admins to deal with abuse quickly.
    
    #   - two for ratelimiting number of rooms a user can join, "local" for when
    #     users are joining rooms the server is already in (this is cheap) vs
    #     "remote" for when users are trying to join rooms not on the server (which
    #     can be more expensive)
    
    #   - one for ratelimiting how often a user or IP can attempt to validate a 3PID.
    
    #   - two for ratelimiting how often invites can be sent in a room or to a
    #     specific user.
    
    #   - one for ratelimiting 3PID invites (i.e. invites sent to a third-party ID
    #     such as an email address or a phone number) based on the account that's
    #     sending the invite.
    
    #
    # The defaults are as shown below.
    #
    
    #rc_message:
    #  per_second: 0.2
    #  burst_count: 10
    #
    
    #rc_registration:
    #  per_second: 0.17
    #  burst_count: 3
    #
    
    #rc_registration_token_validity:
    #  per_second: 0.1
    #  burst_count: 5
    #
    
    #rc_login:
    #  address:
    #    per_second: 0.17
    #    burst_count: 3
    #  account:
    #    per_second: 0.17
    #    burst_count: 3
    
    #  failed_attempts:
    #    per_second: 0.17
    #    burst_count: 3
    
    Erik Johnston's avatar
    Erik Johnston committed
    #
    #rc_admin_redaction:
    #  per_second: 1
    #  burst_count: 50
    
    #
    #rc_joins:
    #  local:
    #    per_second: 0.1
    
    #  remote:
    #    per_second: 0.01
    
    #
    #rc_3pid_validation:
    #  per_second: 0.003
    #  burst_count: 5
    
    #
    #rc_invites:
    #  per_room:
    #    per_second: 0.3
    #    burst_count: 10
    #  per_user:
    #    per_second: 0.003
    #    burst_count: 5
    
    #
    #rc_third_party_invite:
    #  per_second: 0.2
    #  burst_count: 10
    
    # Ratelimiting settings for incoming federation
    
    # The rc_federation configuration is made up of the following settings:
    #   - window_size: window size in milliseconds
    #   - sleep_limit: number of federation requests from a single server in
    #     a window before the server will delay processing the request.
    #   - sleep_delay: duration in milliseconds to delay processing events
    #     from remote servers by if they go over the sleep limit.
    #   - reject_limit: maximum number of concurrent federation requests
    #     allowed from a single server
    #   - concurrent: number of federation requests to concurrently process
    #     from a single server
    
    # The defaults are as shown below.
    
    #rc_federation:
    #  window_size: 1000
    #  sleep_limit: 10
    #  sleep_delay: 500
    #  reject_limit: 50
    #  concurrent: 3
    
    # Target outgoing federation transaction frequency for sending read-receipts,
    # per-room.
    #
    # If we end up trying to send out more read-receipts, they will get buffered up
    # into fewer transactions.
    #
    #federation_rr_transactions_per_room_per_second: 50
    
    
    ## Media Store ##
    
    # Enable the media store service in the Synapse master. Uncomment the
    # following if you are using a separate media store worker.
    #
    #enable_media_repo: false
    
    
    # Directory where uploaded images and attachments are stored.
    #
    media_store_path: "DATADIR/media_store"
    
    # Media storage providers allow media to be stored in different
    # locations.
    #
    #media_storage_providers:
    #  - module: file_system
    
    #    # Whether to store newly uploaded local files
    
    #    # Whether to store newly downloaded remote files
    
    #    # Whether to wait for successful storage for local uploads
    
    #    store_synchronous: false
    #    config:
    #       directory: /mnt/some/other/directory
    
    # The largest allowed upload size in bytes
    #
    
    # If you are using a reverse proxy you may also need to set this value in
    # your reverse proxy's config. Notably Nginx has a small max body size by default.
    
    # See https://matrix-org.github.io/synapse/latest/reverse_proxy.html.
    
    
    # Maximum number of pixels that will be thumbnailed
    #
    
    
    # Whether to generate new thumbnails on the fly to precisely match
    # the resolution requested by the client. If true then whenever
    # a new resolution is requested by the client the server will
    # generate a new thumbnail. If false the server will pick a thumbnail
    # from a precalculated list.
    #
    
    
    # List of thumbnails to precalculate when an image is uploaded.
    #