sample_config.yaml 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486
  1. # The config is maintained as an up-to-date snapshot of the default
  2. # homeserver.yaml configuration generated by Synapse.
  3. #
  4. # It is intended to act as a reference for the default configuration,
  5. # helping admins keep track of new options and other changes, and compare
  6. # their configs with the current default. As such, many of the actual
  7. # config values shown are placeholders.
  8. #
  9. # It is *not* intended to be copied and used as the basis for a real
  10. # homeserver.yaml. Instead, if you are starting from scratch, please generate
  11. # a fresh config using Synapse by following the instructions in INSTALL.md.
  12. ## Server ##
  13. # The domain name of the server, with optional explicit port.
  14. # This is used by remote servers to connect to this server,
  15. # e.g. matrix.org, localhost:8080, etc.
  16. # This is also the last part of your UserID.
  17. #
  18. server_name: "SERVERNAME"
  19. # When running as a daemon, the file to store the pid in
  20. #
  21. pid_file: DATADIR/homeserver.pid
  22. # The path to the web client which will be served at /_matrix/client/
  23. # if 'webclient' is configured under the 'listeners' configuration.
  24. #
  25. #web_client_location: "/path/to/web/root"
  26. # The public-facing base URL that clients use to access this HS
  27. # (not including _matrix/...). This is the same URL a user would
  28. # enter into the 'custom HS URL' field on their client. If you
  29. # use synapse with a reverse proxy, this should be the URL to reach
  30. # synapse via the proxy.
  31. #
  32. #public_baseurl: https://example.com/
  33. # Set the soft limit on the number of file descriptors synapse can use
  34. # Zero is used to indicate synapse should set the soft limit to the
  35. # hard limit.
  36. #
  37. #soft_file_limit: 0
  38. # Set to false to disable presence tracking on this homeserver.
  39. #
  40. #use_presence: false
  41. # Whether to require authentication to retrieve profile data (avatars,
  42. # display names) of other users through the client API. Defaults to
  43. # 'false'. Note that profile data is also available via the federation
  44. # API, so this setting is of limited value if federation is enabled on
  45. # the server.
  46. #
  47. #require_auth_for_profile_requests: true
  48. # If set to 'false', requires authentication to access the server's public rooms
  49. # directory through the client API. Defaults to 'true'.
  50. #
  51. #allow_public_rooms_without_auth: false
  52. # If set to 'false', forbids any other homeserver to fetch the server's public
  53. # rooms directory via federation. Defaults to 'true'.
  54. #
  55. #allow_public_rooms_over_federation: false
  56. # The default room version for newly created rooms.
  57. #
  58. # Known room versions are listed here:
  59. # https://matrix.org/docs/spec/#complete-list-of-room-versions
  60. #
  61. # For example, for room version 1, default_room_version should be set
  62. # to "1".
  63. #
  64. #default_room_version: "4"
  65. # The GC threshold parameters to pass to `gc.set_threshold`, if defined
  66. #
  67. #gc_thresholds: [700, 10, 10]
  68. # Set the limit on the returned events in the timeline in the get
  69. # and sync operations. The default value is -1, means no upper limit.
  70. #
  71. #filter_timeline_limit: 5000
  72. # Whether room invites to users on this server should be blocked
  73. # (except those sent by local server admins). The default is False.
  74. #
  75. #block_non_admin_invites: True
  76. # Room searching
  77. #
  78. # If disabled, new messages will not be indexed for searching and users
  79. # will receive errors when searching for messages. Defaults to enabled.
  80. #
  81. #enable_search: false
  82. # Restrict federation to the following whitelist of domains.
  83. # N.B. we recommend also firewalling your federation listener to limit
  84. # inbound federation traffic as early as possible, rather than relying
  85. # purely on this application-layer restriction. If not specified, the
  86. # default is to whitelist everything.
  87. #
  88. #federation_domain_whitelist:
  89. # - lon.example.com
  90. # - nyc.example.com
  91. # - syd.example.com
  92. # Prevent federation requests from being sent to the following
  93. # blacklist IP address CIDR ranges. If this option is not specified, or
  94. # specified with an empty list, no ip range blacklist will be enforced.
  95. #
  96. # (0.0.0.0 and :: are always blacklisted, whether or not they are explicitly
  97. # listed here, since they correspond to unroutable addresses.)
  98. #
  99. federation_ip_range_blacklist:
  100. - '127.0.0.0/8'
  101. - '10.0.0.0/8'
  102. - '172.16.0.0/12'
  103. - '192.168.0.0/16'
  104. - '100.64.0.0/10'
  105. - '169.254.0.0/16'
  106. - '::1/128'
  107. - 'fe80::/64'
  108. - 'fc00::/7'
  109. # List of ports that Synapse should listen on, their purpose and their
  110. # configuration.
  111. #
  112. # Options for each listener include:
  113. #
  114. # port: the TCP port to bind to
  115. #
  116. # bind_addresses: a list of local addresses to listen on. The default is
  117. # 'all local interfaces'.
  118. #
  119. # type: the type of listener. Normally 'http', but other valid options are:
  120. # 'manhole' (see docs/manhole.md),
  121. # 'metrics' (see docs/metrics-howto.rst),
  122. # 'replication' (see docs/workers.rst).
  123. #
  124. # tls: set to true to enable TLS for this listener. Will use the TLS
  125. # key/cert specified in tls_private_key_path / tls_certificate_path.
  126. #
  127. # x_forwarded: Only valid for an 'http' listener. Set to true to use the
  128. # X-Forwarded-For header as the client IP. Useful when Synapse is
  129. # behind a reverse-proxy.
  130. #
  131. # resources: Only valid for an 'http' listener. A list of resources to host
  132. # on this port. Options for each resource are:
  133. #
  134. # names: a list of names of HTTP resources. See below for a list of
  135. # valid resource names.
  136. #
  137. # compress: set to true to enable HTTP comression for this resource.
  138. #
  139. # additional_resources: Only valid for an 'http' listener. A map of
  140. # additional endpoints which should be loaded via dynamic modules.
  141. #
  142. # Valid resource names are:
  143. #
  144. # client: the client-server API (/_matrix/client), and the synapse admin
  145. # API (/_synapse/admin). Also implies 'media' and 'static'.
  146. #
  147. # consent: user consent forms (/_matrix/consent). See
  148. # docs/consent_tracking.md.
  149. #
  150. # federation: the server-server API (/_matrix/federation). Also implies
  151. # 'media', 'keys', 'openid'
  152. #
  153. # keys: the key discovery API (/_matrix/keys).
  154. #
  155. # media: the media API (/_matrix/media).
  156. #
  157. # metrics: the metrics interface. See docs/metrics-howto.rst.
  158. #
  159. # openid: OpenID authentication.
  160. #
  161. # replication: the HTTP replication API (/_synapse/replication). See
  162. # docs/workers.rst.
  163. #
  164. # static: static resources under synapse/static (/_matrix/static). (Mostly
  165. # useful for 'fallback authentication'.)
  166. #
  167. # webclient: A web client. Requires web_client_location to be set.
  168. #
  169. listeners:
  170. # TLS-enabled listener: for when matrix traffic is sent directly to synapse.
  171. #
  172. # Disabled by default. To enable it, uncomment the following. (Note that you
  173. # will also need to give Synapse a TLS key and certificate: see the TLS section
  174. # below.)
  175. #
  176. #- port: 8448
  177. # type: http
  178. # tls: true
  179. # resources:
  180. # - names: [client, federation]
  181. # Unsecure HTTP listener: for when matrix traffic passes through a reverse proxy
  182. # that unwraps TLS.
  183. #
  184. # If you plan to use a reverse proxy, please see
  185. # https://github.com/matrix-org/synapse/blob/master/docs/reverse_proxy.rst.
  186. #
  187. - port: 8008
  188. tls: false
  189. bind_addresses: ['::1', '127.0.0.1']
  190. type: http
  191. x_forwarded: true
  192. resources:
  193. - names: [client, federation]
  194. compress: false
  195. # example additional_resources:
  196. #
  197. #additional_resources:
  198. # "/_matrix/my/custom/endpoint":
  199. # module: my_module.CustomRequestHandler
  200. # config: {}
  201. # Turn on the twisted ssh manhole service on localhost on the given
  202. # port.
  203. #
  204. #- port: 9000
  205. # bind_addresses: ['::1', '127.0.0.1']
  206. # type: manhole
  207. ## Homeserver blocking ##
  208. # How to reach the server admin, used in ResourceLimitError
  209. #
  210. #admin_contact: 'mailto:admin@server.com'
  211. # Global blocking
  212. #
  213. #hs_disabled: False
  214. #hs_disabled_message: 'Human readable reason for why the HS is blocked'
  215. #hs_disabled_limit_type: 'error code(str), to help clients decode reason'
  216. # Monthly Active User Blocking
  217. #
  218. # Used in cases where the admin or server owner wants to limit to the
  219. # number of monthly active users.
  220. #
  221. # 'limit_usage_by_mau' disables/enables monthly active user blocking. When
  222. # anabled and a limit is reached the server returns a 'ResourceLimitError'
  223. # with error type Codes.RESOURCE_LIMIT_EXCEEDED
  224. #
  225. # 'max_mau_value' is the hard limit of monthly active users above which
  226. # the server will start blocking user actions.
  227. #
  228. # 'mau_trial_days' is a means to add a grace period for active users. It
  229. # means that users must be active for this number of days before they
  230. # can be considered active and guards against the case where lots of users
  231. # sign up in a short space of time never to return after their initial
  232. # session.
  233. #
  234. #limit_usage_by_mau: False
  235. #max_mau_value: 50
  236. #mau_trial_days: 2
  237. # If enabled, the metrics for the number of monthly active users will
  238. # be populated, however no one will be limited. If limit_usage_by_mau
  239. # is true, this is implied to be true.
  240. #
  241. #mau_stats_only: False
  242. # Sometimes the server admin will want to ensure certain accounts are
  243. # never blocked by mau checking. These accounts are specified here.
  244. #
  245. #mau_limit_reserved_threepids:
  246. # - medium: 'email'
  247. # address: 'reserved_user@example.com'
  248. # Used by phonehome stats to group together related servers.
  249. #server_context: context
  250. # Resource-constrained Homeserver Settings
  251. #
  252. # If limit_remote_rooms.enabled is True, the room complexity will be
  253. # checked before a user joins a new remote room. If it is above
  254. # limit_remote_rooms.complexity, it will disallow joining or
  255. # instantly leave.
  256. #
  257. # limit_remote_rooms.complexity_error can be set to customise the text
  258. # displayed to the user when a room above the complexity threshold has
  259. # its join cancelled.
  260. #
  261. # Uncomment the below lines to enable:
  262. #limit_remote_rooms:
  263. # enabled: True
  264. # complexity: 1.0
  265. # complexity_error: "This room is too complex."
  266. # Whether to require a user to be in the room to add an alias to it.
  267. # Defaults to 'true'.
  268. #
  269. #require_membership_for_aliases: false
  270. # Whether to allow per-room membership profiles through the send of membership
  271. # events with profile information that differ from the target's global profile.
  272. # Defaults to 'true'.
  273. #
  274. #allow_per_room_profiles: false
  275. ## TLS ##
  276. # PEM-encoded X509 certificate for TLS.
  277. # This certificate, as of Synapse 1.0, will need to be a valid and verifiable
  278. # certificate, signed by a recognised Certificate Authority.
  279. #
  280. # See 'ACME support' below to enable auto-provisioning this certificate via
  281. # Let's Encrypt.
  282. #
  283. # If supplying your own, be sure to use a `.pem` file that includes the
  284. # full certificate chain including any intermediate certificates (for
  285. # instance, if using certbot, use `fullchain.pem` as your certificate,
  286. # not `cert.pem`).
  287. #
  288. #tls_certificate_path: "CONFDIR/SERVERNAME.tls.crt"
  289. # PEM-encoded private key for TLS
  290. #
  291. #tls_private_key_path: "CONFDIR/SERVERNAME.tls.key"
  292. # Whether to verify TLS server certificates for outbound federation requests.
  293. #
  294. # Defaults to `true`. To disable certificate verification, uncomment the
  295. # following line.
  296. #
  297. #federation_verify_certificates: false
  298. # The minimum TLS version that will be used for outbound federation requests.
  299. #
  300. # Defaults to `1`. Configurable to `1`, `1.1`, `1.2`, or `1.3`. Note
  301. # that setting this value higher than `1.2` will prevent federation to most
  302. # of the public Matrix network: only configure it to `1.3` if you have an
  303. # entirely private federation setup and you can ensure TLS 1.3 support.
  304. #
  305. #federation_client_minimum_tls_version: 1.2
  306. # Skip federation certificate verification on the following whitelist
  307. # of domains.
  308. #
  309. # This setting should only be used in very specific cases, such as
  310. # federation over Tor hidden services and similar. For private networks
  311. # of homeservers, you likely want to use a private CA instead.
  312. #
  313. # Only effective if federation_verify_certicates is `true`.
  314. #
  315. #federation_certificate_verification_whitelist:
  316. # - lon.example.com
  317. # - *.domain.com
  318. # - *.onion
  319. # List of custom certificate authorities for federation traffic.
  320. #
  321. # This setting should only normally be used within a private network of
  322. # homeservers.
  323. #
  324. # Note that this list will replace those that are provided by your
  325. # operating environment. Certificates must be in PEM format.
  326. #
  327. #federation_custom_ca_list:
  328. # - myCA1.pem
  329. # - myCA2.pem
  330. # - myCA3.pem
  331. # ACME support: This will configure Synapse to request a valid TLS certificate
  332. # for your configured `server_name` via Let's Encrypt.
  333. #
  334. # Note that provisioning a certificate in this way requires port 80 to be
  335. # routed to Synapse so that it can complete the http-01 ACME challenge.
  336. # By default, if you enable ACME support, Synapse will attempt to listen on
  337. # port 80 for incoming http-01 challenges - however, this will likely fail
  338. # with 'Permission denied' or a similar error.
  339. #
  340. # There are a couple of potential solutions to this:
  341. #
  342. # * If you already have an Apache, Nginx, or similar listening on port 80,
  343. # you can configure Synapse to use an alternate port, and have your web
  344. # server forward the requests. For example, assuming you set 'port: 8009'
  345. # below, on Apache, you would write:
  346. #
  347. # ProxyPass /.well-known/acme-challenge http://localhost:8009/.well-known/acme-challenge
  348. #
  349. # * Alternatively, you can use something like `authbind` to give Synapse
  350. # permission to listen on port 80.
  351. #
  352. acme:
  353. # ACME support is disabled by default. Uncomment the following line
  354. # (and tls_certificate_path and tls_private_key_path above) to enable it.
  355. #
  356. #enabled: true
  357. # Endpoint to use to request certificates. If you only want to test,
  358. # use Let's Encrypt's staging url:
  359. # https://acme-staging.api.letsencrypt.org/directory
  360. #
  361. #url: https://acme-v01.api.letsencrypt.org/directory
  362. # Port number to listen on for the HTTP-01 challenge. Change this if
  363. # you are forwarding connections through Apache/Nginx/etc.
  364. #
  365. #port: 80
  366. # Local addresses to listen on for incoming connections.
  367. # Again, you may want to change this if you are forwarding connections
  368. # through Apache/Nginx/etc.
  369. #
  370. #bind_addresses: ['::', '0.0.0.0']
  371. # How many days remaining on a certificate before it is renewed.
  372. #
  373. #reprovision_threshold: 30
  374. # The domain that the certificate should be for. Normally this
  375. # should be the same as your Matrix domain (i.e., 'server_name'), but,
  376. # by putting a file at 'https://<server_name>/.well-known/matrix/server',
  377. # you can delegate incoming traffic to another server. If you do that,
  378. # you should give the target of the delegation here.
  379. #
  380. # For example: if your 'server_name' is 'example.com', but
  381. # 'https://example.com/.well-known/matrix/server' delegates to
  382. # 'matrix.example.com', you should put 'matrix.example.com' here.
  383. #
  384. # If not set, defaults to your 'server_name'.
  385. #
  386. #domain: matrix.example.com
  387. # file to use for the account key. This will be generated if it doesn't
  388. # exist.
  389. #
  390. # If unspecified, we will use CONFDIR/client.key.
  391. #
  392. account_key_file: DATADIR/acme_account.key
  393. # List of allowed TLS fingerprints for this server to publish along
  394. # with the signing keys for this server. Other matrix servers that
  395. # make HTTPS requests to this server will check that the TLS
  396. # certificates returned by this server match one of the fingerprints.
  397. #
  398. # Synapse automatically adds the fingerprint of its own certificate
  399. # to the list. So if federation traffic is handled directly by synapse
  400. # then no modification to the list is required.
  401. #
  402. # If synapse is run behind a load balancer that handles the TLS then it
  403. # will be necessary to add the fingerprints of the certificates used by
  404. # the loadbalancers to this list if they are different to the one
  405. # synapse is using.
  406. #
  407. # Homeservers are permitted to cache the list of TLS fingerprints
  408. # returned in the key responses up to the "valid_until_ts" returned in
  409. # key. It may be necessary to publish the fingerprints of a new
  410. # certificate and wait until the "valid_until_ts" of the previous key
  411. # responses have passed before deploying it.
  412. #
  413. # You can calculate a fingerprint from a given TLS listener via:
  414. # openssl s_client -connect $host:$port < /dev/null 2> /dev/null |
  415. # openssl x509 -outform DER | openssl sha256 -binary | base64 | tr -d '='
  416. # or by checking matrix.org/federationtester/api/report?server_name=$host
  417. #
  418. #tls_fingerprints: [{"sha256": "<base64_encoded_sha256_fingerprint>"}]
  419. ## Database ##
  420. database:
  421. # The database engine name
  422. name: "sqlite3"
  423. # Arguments to pass to the engine
  424. args:
  425. # Path to the database
  426. database: "DATADIR/homeserver.db"
  427. # Number of events to cache in memory.
  428. #
  429. #event_cache_size: 10K
  430. ## Logging ##
  431. # A yaml python logging config file
  432. #
  433. log_config: "CONFDIR/SERVERNAME.log.config"
  434. ## Ratelimiting ##
  435. # Ratelimiting settings for client actions (registration, login, messaging).
  436. #
  437. # Each ratelimiting configuration is made of two parameters:
  438. # - per_second: number of requests a client can send per second.
  439. # - burst_count: number of requests a client can send before being throttled.
  440. #
  441. # Synapse currently uses the following configurations:
  442. # - one for messages that ratelimits sending based on the account the client
  443. # is using
  444. # - one for registration that ratelimits registration requests based on the
  445. # client's IP address.
  446. # - one for login that ratelimits login requests based on the client's IP
  447. # address.
  448. # - one for login that ratelimits login requests based on the account the
  449. # client is attempting to log into.
  450. # - one for login that ratelimits login requests based on the account the
  451. # client is attempting to log into, based on the amount of failed login
  452. # attempts for this account.
  453. #
  454. # The defaults are as shown below.
  455. #
  456. #rc_message:
  457. # per_second: 0.2
  458. # burst_count: 10
  459. #
  460. #rc_registration:
  461. # per_second: 0.17
  462. # burst_count: 3
  463. #
  464. #rc_login:
  465. # address:
  466. # per_second: 0.17
  467. # burst_count: 3
  468. # account:
  469. # per_second: 0.17
  470. # burst_count: 3
  471. # failed_attempts:
  472. # per_second: 0.17
  473. # burst_count: 3
  474. # Ratelimiting settings for incoming federation
  475. #
  476. # The rc_federation configuration is made up of the following settings:
  477. # - window_size: window size in milliseconds
  478. # - sleep_limit: number of federation requests from a single server in
  479. # a window before the server will delay processing the request.
  480. # - sleep_delay: duration in milliseconds to delay processing events
  481. # from remote servers by if they go over the sleep limit.
  482. # - reject_limit: maximum number of concurrent federation requests
  483. # allowed from a single server
  484. # - concurrent: number of federation requests to concurrently process
  485. # from a single server
  486. #
  487. # The defaults are as shown below.
  488. #
  489. #rc_federation:
  490. # window_size: 1000
  491. # sleep_limit: 10
  492. # sleep_delay: 500
  493. # reject_limit: 50
  494. # concurrent: 3
  495. # Target outgoing federation transaction frequency for sending read-receipts,
  496. # per-room.
  497. #
  498. # If we end up trying to send out more read-receipts, they will get buffered up
  499. # into fewer transactions.
  500. #
  501. #federation_rr_transactions_per_room_per_second: 50
  502. ## Media Store ##
  503. # Enable the media store service in the Synapse master. Uncomment the
  504. # following if you are using a separate media store worker.
  505. #
  506. #enable_media_repo: false
  507. # Directory where uploaded images and attachments are stored.
  508. #
  509. media_store_path: "DATADIR/media_store"
  510. # Media storage providers allow media to be stored in different
  511. # locations.
  512. #
  513. #media_storage_providers:
  514. # - module: file_system
  515. # # Whether to write new local files.
  516. # store_local: false
  517. # # Whether to write new remote media
  518. # store_remote: false
  519. # # Whether to block upload requests waiting for write to this
  520. # # provider to complete
  521. # store_synchronous: false
  522. # config:
  523. # directory: /mnt/some/other/directory
  524. # Directory where in-progress uploads are stored.
  525. #
  526. uploads_path: "DATADIR/uploads"
  527. # The largest allowed upload size in bytes
  528. #
  529. #max_upload_size: 10M
  530. # Maximum number of pixels that will be thumbnailed
  531. #
  532. #max_image_pixels: 32M
  533. # Whether to generate new thumbnails on the fly to precisely match
  534. # the resolution requested by the client. If true then whenever
  535. # a new resolution is requested by the client the server will
  536. # generate a new thumbnail. If false the server will pick a thumbnail
  537. # from a precalculated list.
  538. #
  539. #dynamic_thumbnails: false
  540. # List of thumbnails to precalculate when an image is uploaded.
  541. #
  542. #thumbnail_sizes:
  543. # - width: 32
  544. # height: 32
  545. # method: crop
  546. # - width: 96
  547. # height: 96
  548. # method: crop
  549. # - width: 320
  550. # height: 240
  551. # method: scale
  552. # - width: 640
  553. # height: 480
  554. # method: scale
  555. # - width: 800
  556. # height: 600
  557. # method: scale
  558. # Is the preview URL API enabled?
  559. #
  560. # 'false' by default: uncomment the following to enable it (and specify a
  561. # url_preview_ip_range_blacklist blacklist).
  562. #
  563. #url_preview_enabled: true
  564. # List of IP address CIDR ranges that the URL preview spider is denied
  565. # from accessing. There are no defaults: you must explicitly
  566. # specify a list for URL previewing to work. You should specify any
  567. # internal services in your network that you do not want synapse to try
  568. # to connect to, otherwise anyone in any Matrix room could cause your
  569. # synapse to issue arbitrary GET requests to your internal services,
  570. # causing serious security issues.
  571. #
  572. # (0.0.0.0 and :: are always blacklisted, whether or not they are explicitly
  573. # listed here, since they correspond to unroutable addresses.)
  574. #
  575. # This must be specified if url_preview_enabled is set. It is recommended that
  576. # you uncomment the following list as a starting point.
  577. #
  578. #url_preview_ip_range_blacklist:
  579. # - '127.0.0.0/8'
  580. # - '10.0.0.0/8'
  581. # - '172.16.0.0/12'
  582. # - '192.168.0.0/16'
  583. # - '100.64.0.0/10'
  584. # - '169.254.0.0/16'
  585. # - '::1/128'
  586. # - 'fe80::/64'
  587. # - 'fc00::/7'
  588. # List of IP address CIDR ranges that the URL preview spider is allowed
  589. # to access even if they are specified in url_preview_ip_range_blacklist.
  590. # This is useful for specifying exceptions to wide-ranging blacklisted
  591. # target IP ranges - e.g. for enabling URL previews for a specific private
  592. # website only visible in your network.
  593. #
  594. #url_preview_ip_range_whitelist:
  595. # - '192.168.1.1'
  596. # Optional list of URL matches that the URL preview spider is
  597. # denied from accessing. You should use url_preview_ip_range_blacklist
  598. # in preference to this, otherwise someone could define a public DNS
  599. # entry that points to a private IP address and circumvent the blacklist.
  600. # This is more useful if you know there is an entire shape of URL that
  601. # you know that will never want synapse to try to spider.
  602. #
  603. # Each list entry is a dictionary of url component attributes as returned
  604. # by urlparse.urlsplit as applied to the absolute form of the URL. See
  605. # https://docs.python.org/2/library/urlparse.html#urlparse.urlsplit
  606. # The values of the dictionary are treated as an filename match pattern
  607. # applied to that component of URLs, unless they start with a ^ in which
  608. # case they are treated as a regular expression match. If all the
  609. # specified component matches for a given list item succeed, the URL is
  610. # blacklisted.
  611. #
  612. #url_preview_url_blacklist:
  613. # # blacklist any URL with a username in its URI
  614. # - username: '*'
  615. #
  616. # # blacklist all *.google.com URLs
  617. # - netloc: 'google.com'
  618. # - netloc: '*.google.com'
  619. #
  620. # # blacklist all plain HTTP URLs
  621. # - scheme: 'http'
  622. #
  623. # # blacklist http(s)://www.acme.com/foo
  624. # - netloc: 'www.acme.com'
  625. # path: '/foo'
  626. #
  627. # # blacklist any URL with a literal IPv4 address
  628. # - netloc: '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$'
  629. # The largest allowed URL preview spidering size in bytes
  630. #
  631. #max_spider_size: 10M
  632. ## Captcha ##
  633. # See docs/CAPTCHA_SETUP for full details of configuring this.
  634. # This Home Server's ReCAPTCHA public key.
  635. #
  636. #recaptcha_public_key: "YOUR_PUBLIC_KEY"
  637. # This Home Server's ReCAPTCHA private key.
  638. #
  639. #recaptcha_private_key: "YOUR_PRIVATE_KEY"
  640. # Enables ReCaptcha checks when registering, preventing signup
  641. # unless a captcha is answered. Requires a valid ReCaptcha
  642. # public/private key.
  643. #
  644. #enable_registration_captcha: false
  645. # A secret key used to bypass the captcha test entirely.
  646. #
  647. #captcha_bypass_secret: "YOUR_SECRET_HERE"
  648. # The API endpoint to use for verifying m.login.recaptcha responses.
  649. #
  650. #recaptcha_siteverify_api: "https://www.recaptcha.net/recaptcha/api/siteverify"
  651. ## TURN ##
  652. # The public URIs of the TURN server to give to clients
  653. #
  654. #turn_uris: []
  655. # The shared secret used to compute passwords for the TURN server
  656. #
  657. #turn_shared_secret: "YOUR_SHARED_SECRET"
  658. # The Username and password if the TURN server needs them and
  659. # does not use a token
  660. #
  661. #turn_username: "TURNSERVER_USERNAME"
  662. #turn_password: "TURNSERVER_PASSWORD"
  663. # How long generated TURN credentials last
  664. #
  665. #turn_user_lifetime: 1h
  666. # Whether guests should be allowed to use the TURN server.
  667. # This defaults to True, otherwise VoIP will be unreliable for guests.
  668. # However, it does introduce a slight security risk as it allows users to
  669. # connect to arbitrary endpoints without having first signed up for a
  670. # valid account (e.g. by passing a CAPTCHA).
  671. #
  672. #turn_allow_guests: True
  673. ## Registration ##
  674. #
  675. # Registration can be rate-limited using the parameters in the "Ratelimiting"
  676. # section of this file.
  677. # Enable registration for new users.
  678. #
  679. #enable_registration: false
  680. # Optional account validity configuration. This allows for accounts to be denied
  681. # any request after a given period.
  682. #
  683. # ``enabled`` defines whether the account validity feature is enabled. Defaults
  684. # to False.
  685. #
  686. # ``period`` allows setting the period after which an account is valid
  687. # after its registration. When renewing the account, its validity period
  688. # will be extended by this amount of time. This parameter is required when using
  689. # the account validity feature.
  690. #
  691. # ``renew_at`` is the amount of time before an account's expiry date at which
  692. # Synapse will send an email to the account's email address with a renewal link.
  693. # This needs the ``email`` and ``public_baseurl`` configuration sections to be
  694. # filled.
  695. #
  696. # ``renew_email_subject`` is the subject of the email sent out with the renewal
  697. # link. ``%(app)s`` can be used as a placeholder for the ``app_name`` parameter
  698. # from the ``email`` section.
  699. #
  700. # Once this feature is enabled, Synapse will look for registered users without an
  701. # expiration date at startup and will add one to every account it found using the
  702. # current settings at that time.
  703. # This means that, if a validity period is set, and Synapse is restarted (it will
  704. # then derive an expiration date from the current validity period), and some time
  705. # after that the validity period changes and Synapse is restarted, the users'
  706. # expiration dates won't be updated unless their account is manually renewed. This
  707. # date will be randomly selected within a range [now + period - d ; now + period],
  708. # where d is equal to 10% of the validity period.
  709. #
  710. #account_validity:
  711. # enabled: True
  712. # period: 6w
  713. # renew_at: 1w
  714. # renew_email_subject: "Renew your %(app)s account"
  715. # # Directory in which Synapse will try to find the HTML files to serve to the
  716. # # user when trying to renew an account. Optional, defaults to
  717. # # synapse/res/templates.
  718. # template_dir: "res/templates"
  719. # # HTML to be displayed to the user after they successfully renewed their
  720. # # account. Optional.
  721. # account_renewed_html_path: "account_renewed.html"
  722. # # HTML to be displayed when the user tries to renew an account with an invalid
  723. # # renewal token. Optional.
  724. # invalid_token_html_path: "invalid_token.html"
  725. # Time that a user's session remains valid for, after they log in.
  726. #
  727. # Note that this is not currently compatible with guest logins.
  728. #
  729. # Note also that this is calculated at login time: changes are not applied
  730. # retrospectively to users who have already logged in.
  731. #
  732. # By default, this is infinite.
  733. #
  734. #session_lifetime: 24h
  735. # The user must provide all of the below types of 3PID when registering.
  736. #
  737. #registrations_require_3pid:
  738. # - email
  739. # - msisdn
  740. # Explicitly disable asking for MSISDNs from the registration
  741. # flow (overrides registrations_require_3pid if MSISDNs are set as required)
  742. #
  743. #disable_msisdn_registration: true
  744. # Mandate that users are only allowed to associate certain formats of
  745. # 3PIDs with accounts on this server.
  746. #
  747. #allowed_local_3pids:
  748. # - medium: email
  749. # pattern: '.*@matrix\.org'
  750. # - medium: email
  751. # pattern: '.*@vector\.im'
  752. # - medium: msisdn
  753. # pattern: '\+44'
  754. # Enable 3PIDs lookup requests to identity servers from this server.
  755. #
  756. #enable_3pid_lookup: true
  757. # If set, allows registration of standard or admin accounts by anyone who
  758. # has the shared secret, even if registration is otherwise disabled.
  759. #
  760. # registration_shared_secret: <PRIVATE STRING>
  761. # Set the number of bcrypt rounds used to generate password hash.
  762. # Larger numbers increase the work factor needed to generate the hash.
  763. # The default number is 12 (which equates to 2^12 rounds).
  764. # N.B. that increasing this will exponentially increase the time required
  765. # to register or login - e.g. 24 => 2^24 rounds which will take >20 mins.
  766. #
  767. #bcrypt_rounds: 12
  768. # Allows users to register as guests without a password/email/etc, and
  769. # participate in rooms hosted on this server which have been made
  770. # accessible to anonymous users.
  771. #
  772. #allow_guest_access: false
  773. # The identity server which we suggest that clients should use when users log
  774. # in on this server.
  775. #
  776. # (By default, no suggestion is made, so it is left up to the client.
  777. # This setting is ignored unless public_baseurl is also set.)
  778. #
  779. #default_identity_server: https://matrix.org
  780. # The list of identity servers trusted to verify third party
  781. # identifiers by this server.
  782. #
  783. # Also defines the ID server which will be called when an account is
  784. # deactivated (one will be picked arbitrarily).
  785. #
  786. #trusted_third_party_id_servers:
  787. # - matrix.org
  788. # - vector.im
  789. # Users who register on this homeserver will automatically be joined
  790. # to these rooms
  791. #
  792. #auto_join_rooms:
  793. # - "#example:example.com"
  794. # Where auto_join_rooms are specified, setting this flag ensures that the
  795. # the rooms exist by creating them when the first user on the
  796. # homeserver registers.
  797. # Setting to false means that if the rooms are not manually created,
  798. # users cannot be auto-joined since they do not exist.
  799. #
  800. #autocreate_auto_join_rooms: true
  801. ## Metrics ###
  802. # Enable collection and rendering of performance metrics
  803. #
  804. #enable_metrics: False
  805. # Enable sentry integration
  806. # NOTE: While attempts are made to ensure that the logs don't contain
  807. # any sensitive information, this cannot be guaranteed. By enabling
  808. # this option the sentry server may therefore receive sensitive
  809. # information, and it in turn may then diseminate sensitive information
  810. # through insecure notification channels if so configured.
  811. #
  812. #sentry:
  813. # dsn: "..."
  814. # Whether or not to report anonymized homeserver usage statistics.
  815. # report_stats: true|false
  816. ## API Configuration ##
  817. # A list of event types that will be included in the room_invite_state
  818. #
  819. #room_invite_state_types:
  820. # - "m.room.join_rules"
  821. # - "m.room.canonical_alias"
  822. # - "m.room.avatar"
  823. # - "m.room.encryption"
  824. # - "m.room.name"
  825. # A list of application service config files to use
  826. #
  827. #app_service_config_files:
  828. # - app_service_1.yaml
  829. # - app_service_2.yaml
  830. # Uncomment to enable tracking of application service IP addresses. Implicitly
  831. # enables MAU tracking for application service users.
  832. #
  833. #track_appservice_user_ips: True
  834. # a secret which is used to sign access tokens. If none is specified,
  835. # the registration_shared_secret is used, if one is given; otherwise,
  836. # a secret key is derived from the signing key.
  837. #
  838. # macaroon_secret_key: <PRIVATE STRING>
  839. # a secret which is used to calculate HMACs for form values, to stop
  840. # falsification of values. Must be specified for the User Consent
  841. # forms to work.
  842. #
  843. # form_secret: <PRIVATE STRING>
  844. ## Signing Keys ##
  845. # Path to the signing key to sign messages with
  846. #
  847. signing_key_path: "CONFDIR/SERVERNAME.signing.key"
  848. # The keys that the server used to sign messages with but won't use
  849. # to sign new messages. E.g. it has lost its private key
  850. #
  851. #old_signing_keys:
  852. # "ed25519:auto":
  853. # # Base64 encoded public key
  854. # key: "The public part of your old signing key."
  855. # # Millisecond POSIX timestamp when the key expired.
  856. # expired_ts: 123456789123
  857. # How long key response published by this server is valid for.
  858. # Used to set the valid_until_ts in /key/v2 APIs.
  859. # Determines how quickly servers will query to check which keys
  860. # are still valid.
  861. #
  862. #key_refresh_interval: 1d
  863. # The trusted servers to download signing keys from.
  864. #
  865. # When we need to fetch a signing key, each server is tried in parallel.
  866. #
  867. # Normally, the connection to the key server is validated via TLS certificates.
  868. # Additional security can be provided by configuring a `verify key`, which
  869. # will make synapse check that the response is signed by that key.
  870. #
  871. # This setting supercedes an older setting named `perspectives`. The old format
  872. # is still supported for backwards-compatibility, but it is deprecated.
  873. #
  874. # Options for each entry in the list include:
  875. #
  876. # server_name: the name of the server. required.
  877. #
  878. # verify_keys: an optional map from key id to base64-encoded public key.
  879. # If specified, we will check that the response is signed by at least
  880. # one of the given keys.
  881. #
  882. # accept_keys_insecurely: a boolean. Normally, if `verify_keys` is unset,
  883. # and federation_verify_certificates is not `true`, synapse will refuse
  884. # to start, because this would allow anyone who can spoof DNS responses
  885. # to masquerade as the trusted key server. If you know what you are doing
  886. # and are sure that your network environment provides a secure connection
  887. # to the key server, you can set this to `true` to override this
  888. # behaviour.
  889. #
  890. # An example configuration might look like:
  891. #
  892. #trusted_key_servers:
  893. # - server_name: "my_trusted_server.example.com"
  894. # verify_keys:
  895. # "ed25519:auto": "abcdefghijklmnopqrstuvwxyzabcdefghijklmopqr"
  896. # - server_name: "my_other_trusted_server.example.com"
  897. #
  898. # The default configuration is:
  899. #
  900. #trusted_key_servers:
  901. # - server_name: "matrix.org"
  902. #
  903. # The signing keys to use when acting as a trusted key server. If not specified
  904. # defaults to the server signing key.
  905. #
  906. # Can contain multiple keys, one per line.
  907. #
  908. #key_server_signing_keys_path: "key_server_signing_keys.key"
  909. # Enable SAML2 for registration and login. Uses pysaml2.
  910. #
  911. # `sp_config` is the configuration for the pysaml2 Service Provider.
  912. # See pysaml2 docs for format of config.
  913. #
  914. # Default values will be used for the 'entityid' and 'service' settings,
  915. # so it is not normally necessary to specify them unless you need to
  916. # override them.
  917. #
  918. # Once SAML support is enabled, a metadata file will be exposed at
  919. # https://<server>:<port>/_matrix/saml2/metadata.xml, which you may be able to
  920. # use to configure your SAML IdP with. Alternatively, you can manually configure
  921. # the IdP to use an ACS location of
  922. # https://<server>:<port>/_matrix/saml2/authn_response.
  923. #
  924. #saml2_config:
  925. # sp_config:
  926. # # point this to the IdP's metadata. You can use either a local file or
  927. # # (preferably) a URL.
  928. # metadata:
  929. # #local: ["saml2/idp.xml"]
  930. # remote:
  931. # - url: https://our_idp/metadata.xml
  932. #
  933. # # By default, the user has to go to our login page first. If you'd like to
  934. # # allow IdP-initiated login, set 'allow_unsolicited: True' in a
  935. # # 'service.sp' section:
  936. # #
  937. # #service:
  938. # # sp:
  939. # # allow_unsolicited: True
  940. #
  941. # # The examples below are just used to generate our metadata xml, and you
  942. # # may well not need it, depending on your setup. Alternatively you
  943. # # may need a whole lot more detail - see the pysaml2 docs!
  944. #
  945. # description: ["My awesome SP", "en"]
  946. # name: ["Test SP", "en"]
  947. #
  948. # organization:
  949. # name: Example com
  950. # display_name:
  951. # - ["Example co", "en"]
  952. # url: "http://example.com"
  953. #
  954. # contact_person:
  955. # - given_name: Bob
  956. # sur_name: "the Sysadmin"
  957. # email_address": ["admin@example.com"]
  958. # contact_type": technical
  959. #
  960. # # Instead of putting the config inline as above, you can specify a
  961. # # separate pysaml2 configuration file:
  962. # #
  963. # config_path: "CONFDIR/sp_conf.py"
  964. #
  965. # # the lifetime of a SAML session. This defines how long a user has to
  966. # # complete the authentication process, if allow_unsolicited is unset.
  967. # # The default is 5 minutes.
  968. # #
  969. # # saml_session_lifetime: 5m
  970. # Enable CAS for registration and login.
  971. #
  972. #cas_config:
  973. # enabled: true
  974. # server_url: "https://cas-server.com"
  975. # service_url: "https://homeserver.domain.com:8448"
  976. # #required_attributes:
  977. # # name: value
  978. # The JWT needs to contain a globally unique "sub" (subject) claim.
  979. #
  980. #jwt_config:
  981. # enabled: true
  982. # secret: "a secret"
  983. # algorithm: "HS256"
  984. password_config:
  985. # Uncomment to disable password login
  986. #
  987. #enabled: false
  988. # Uncomment to disable authentication against the local password
  989. # database. This is ignored if `enabled` is false, and is only useful
  990. # if you have other password_providers.
  991. #
  992. #localdb_enabled: false
  993. # Uncomment and change to a secret random string for extra security.
  994. # DO NOT CHANGE THIS AFTER INITIAL SETUP!
  995. #
  996. #pepper: "EVEN_MORE_SECRET"
  997. # Enable sending emails for password resets, notification events or
  998. # account expiry notices
  999. #
  1000. # If your SMTP server requires authentication, the optional smtp_user &
  1001. # smtp_pass variables should be used
  1002. #
  1003. #email:
  1004. # enable_notifs: false
  1005. # smtp_host: "localhost"
  1006. # smtp_port: 25 # SSL: 465, STARTTLS: 587
  1007. # smtp_user: "exampleusername"
  1008. # smtp_pass: "examplepassword"
  1009. # require_transport_security: False
  1010. # notif_from: "Your Friendly %(app)s Home Server <noreply@example.com>"
  1011. # app_name: Matrix
  1012. #
  1013. # # Enable email notifications by default
  1014. # #
  1015. # notif_for_new_users: True
  1016. #
  1017. # # Defining a custom URL for Riot is only needed if email notifications
  1018. # # should contain links to a self-hosted installation of Riot; when set
  1019. # # the "app_name" setting is ignored
  1020. # #
  1021. # riot_base_url: "http://localhost/riot"
  1022. #
  1023. # # Enable sending password reset emails via the configured, trusted
  1024. # # identity servers
  1025. # #
  1026. # # IMPORTANT! This will give a malicious or overtaken identity server
  1027. # # the ability to reset passwords for your users! Make absolutely sure
  1028. # # that you want to do this! It is strongly recommended that password
  1029. # # reset emails be sent by the homeserver instead
  1030. # #
  1031. # # If this option is set to false and SMTP options have not been
  1032. # # configured, resetting user passwords via email will be disabled
  1033. # #
  1034. # #trust_identity_server_for_password_resets: false
  1035. #
  1036. # # Configure the time that a validation email or text message code
  1037. # # will expire after sending
  1038. # #
  1039. # # This is currently used for password resets
  1040. # #
  1041. # #validation_token_lifetime: 1h
  1042. #
  1043. # # Template directory. All template files should be stored within this
  1044. # # directory. If not set, default templates from within the Synapse
  1045. # # package will be used
  1046. # #
  1047. # # For the list of default templates, please see
  1048. # # https://github.com/matrix-org/synapse/tree/master/synapse/res/templates
  1049. # #
  1050. # #template_dir: res/templates
  1051. #
  1052. # # Templates for email notifications
  1053. # #
  1054. # notif_template_html: notif_mail.html
  1055. # notif_template_text: notif_mail.txt
  1056. #
  1057. # # Templates for account expiry notices
  1058. # #
  1059. # expiry_template_html: notice_expiry.html
  1060. # expiry_template_text: notice_expiry.txt
  1061. #
  1062. # # Templates for password reset emails sent by the homeserver
  1063. # #
  1064. # #password_reset_template_html: password_reset.html
  1065. # #password_reset_template_text: password_reset.txt
  1066. #
  1067. # # Templates for password reset success and failure pages that a user
  1068. # # will see after attempting to reset their password
  1069. # #
  1070. # #password_reset_template_success_html: password_reset_success.html
  1071. # #password_reset_template_failure_html: password_reset_failure.html
  1072. #password_providers:
  1073. # - module: "ldap_auth_provider.LdapAuthProvider"
  1074. # config:
  1075. # enabled: true
  1076. # uri: "ldap://ldap.example.com:389"
  1077. # start_tls: true
  1078. # base: "ou=users,dc=example,dc=com"
  1079. # attributes:
  1080. # uid: "cn"
  1081. # mail: "email"
  1082. # name: "givenName"
  1083. # #bind_dn:
  1084. # #bind_password:
  1085. # #filter: "(objectClass=posixAccount)"
  1086. # Clients requesting push notifications can either have the body of
  1087. # the message sent in the notification poke along with other details
  1088. # like the sender, or just the event ID and room ID (`event_id_only`).
  1089. # If clients choose the former, this option controls whether the
  1090. # notification request includes the content of the event (other details
  1091. # like the sender are still included). For `event_id_only` push, it
  1092. # has no effect.
  1093. #
  1094. # For modern android devices the notification content will still appear
  1095. # because it is loaded by the app. iPhone, however will send a
  1096. # notification saying only that a message arrived and who it came from.
  1097. #
  1098. #push:
  1099. # include_content: true
  1100. #spam_checker:
  1101. # module: "my_custom_project.SuperSpamChecker"
  1102. # config:
  1103. # example_option: 'things'
  1104. # Uncomment to allow non-server-admin users to create groups on this server
  1105. #
  1106. #enable_group_creation: true
  1107. # If enabled, non server admins can only create groups with local parts
  1108. # starting with this prefix
  1109. #
  1110. #group_creation_prefix: "unofficial/"
  1111. # User Directory configuration
  1112. #
  1113. # 'enabled' defines whether users can search the user directory. If
  1114. # false then empty responses are returned to all queries. Defaults to
  1115. # true.
  1116. #
  1117. # 'search_all_users' defines whether to search all users visible to your HS
  1118. # when searching the user directory, rather than limiting to users visible
  1119. # in public rooms. Defaults to false. If you set it True, you'll have to
  1120. # rebuild the user_directory search indexes, see
  1121. # https://github.com/matrix-org/synapse/blob/master/docs/user_directory.md
  1122. #
  1123. #user_directory:
  1124. # enabled: true
  1125. # search_all_users: false
  1126. # User Consent configuration
  1127. #
  1128. # for detailed instructions, see
  1129. # https://github.com/matrix-org/synapse/blob/master/docs/consent_tracking.md
  1130. #
  1131. # Parts of this section are required if enabling the 'consent' resource under
  1132. # 'listeners', in particular 'template_dir' and 'version'.
  1133. #
  1134. # 'template_dir' gives the location of the templates for the HTML forms.
  1135. # This directory should contain one subdirectory per language (eg, 'en', 'fr'),
  1136. # and each language directory should contain the policy document (named as
  1137. # '<version>.html') and a success page (success.html).
  1138. #
  1139. # 'version' specifies the 'current' version of the policy document. It defines
  1140. # the version to be served by the consent resource if there is no 'v'
  1141. # parameter.
  1142. #
  1143. # 'server_notice_content', if enabled, will send a user a "Server Notice"
  1144. # asking them to consent to the privacy policy. The 'server_notices' section
  1145. # must also be configured for this to work. Notices will *not* be sent to
  1146. # guest users unless 'send_server_notice_to_guests' is set to true.
  1147. #
  1148. # 'block_events_error', if set, will block any attempts to send events
  1149. # until the user consents to the privacy policy. The value of the setting is
  1150. # used as the text of the error.
  1151. #
  1152. # 'require_at_registration', if enabled, will add a step to the registration
  1153. # process, similar to how captcha works. Users will be required to accept the
  1154. # policy before their account is created.
  1155. #
  1156. # 'policy_name' is the display name of the policy users will see when registering
  1157. # for an account. Has no effect unless `require_at_registration` is enabled.
  1158. # Defaults to "Privacy Policy".
  1159. #
  1160. #user_consent:
  1161. # template_dir: res/templates/privacy
  1162. # version: 1.0
  1163. # server_notice_content:
  1164. # msgtype: m.text
  1165. # body: >-
  1166. # To continue using this homeserver you must review and agree to the
  1167. # terms and conditions at %(consent_uri)s
  1168. # send_server_notice_to_guests: True
  1169. # block_events_error: >-
  1170. # To continue using this homeserver you must review and agree to the
  1171. # terms and conditions at %(consent_uri)s
  1172. # require_at_registration: False
  1173. # policy_name: Privacy Policy
  1174. #
  1175. # Local statistics collection. Used in populating the room directory.
  1176. #
  1177. # 'bucket_size' controls how large each statistics timeslice is. It can
  1178. # be defined in a human readable short form -- e.g. "1d", "1y".
  1179. #
  1180. # 'retention' controls how long historical statistics will be kept for.
  1181. # It can be defined in a human readable short form -- e.g. "1d", "1y".
  1182. #
  1183. #
  1184. #stats:
  1185. # enabled: true
  1186. # bucket_size: 1d
  1187. # retention: 1y
  1188. # Server Notices room configuration
  1189. #
  1190. # Uncomment this section to enable a room which can be used to send notices
  1191. # from the server to users. It is a special room which cannot be left; notices
  1192. # come from a special "notices" user id.
  1193. #
  1194. # If you uncomment this section, you *must* define the system_mxid_localpart
  1195. # setting, which defines the id of the user which will be used to send the
  1196. # notices.
  1197. #
  1198. # It's also possible to override the room name, the display name of the
  1199. # "notices" user, and the avatar for the user.
  1200. #
  1201. #server_notices:
  1202. # system_mxid_localpart: notices
  1203. # system_mxid_display_name: "Server Notices"
  1204. # system_mxid_avatar_url: "mxc://server.com/oumMVlgDnLYFaPVkExemNVVZ"
  1205. # room_name: "Server Notices"
  1206. # Uncomment to disable searching the public room list. When disabled
  1207. # blocks searching local and remote room lists for local and remote
  1208. # users by always returning an empty list for all queries.
  1209. #
  1210. #enable_room_list_search: false
  1211. # The `alias_creation` option controls who's allowed to create aliases
  1212. # on this server.
  1213. #
  1214. # The format of this option is a list of rules that contain globs that
  1215. # match against user_id, room_id and the new alias (fully qualified with
  1216. # server name). The action in the first rule that matches is taken,
  1217. # which can currently either be "allow" or "deny".
  1218. #
  1219. # Missing user_id/room_id/alias fields default to "*".
  1220. #
  1221. # If no rules match the request is denied. An empty list means no one
  1222. # can create aliases.
  1223. #
  1224. # Options for the rules include:
  1225. #
  1226. # user_id: Matches against the creator of the alias
  1227. # alias: Matches against the alias being created
  1228. # room_id: Matches against the room ID the alias is being pointed at
  1229. # action: Whether to "allow" or "deny" the request if the rule matches
  1230. #
  1231. # The default is:
  1232. #
  1233. #alias_creation_rules:
  1234. # - user_id: "*"
  1235. # alias: "*"
  1236. # room_id: "*"
  1237. # action: allow
  1238. # The `room_list_publication_rules` option controls who can publish and
  1239. # which rooms can be published in the public room list.
  1240. #
  1241. # The format of this option is the same as that for
  1242. # `alias_creation_rules`.
  1243. #
  1244. # If the room has one or more aliases associated with it, only one of
  1245. # the aliases needs to match the alias rule. If there are no aliases
  1246. # then only rules with `alias: *` match.
  1247. #
  1248. # If no rules match the request is denied. An empty list means no one
  1249. # can publish rooms.
  1250. #
  1251. # Options for the rules include:
  1252. #
  1253. # user_id: Matches agaisnt the creator of the alias
  1254. # room_id: Matches against the room ID being published
  1255. # alias: Matches against any current local or canonical aliases
  1256. # associated with the room
  1257. # action: Whether to "allow" or "deny" the request if the rule matches
  1258. #
  1259. # The default is:
  1260. #
  1261. #room_list_publication_rules:
  1262. # - user_id: "*"
  1263. # alias: "*"
  1264. # room_id: "*"
  1265. # action: allow
  1266. # Server admins can define a Python module that implements extra rules for
  1267. # allowing or denying incoming events. In order to work, this module needs to
  1268. # override the methods defined in synapse/events/third_party_rules.py.
  1269. #
  1270. # This feature is designed to be used in closed federations only, where each
  1271. # participating server enforces the same rules.
  1272. #
  1273. #third_party_event_rules:
  1274. # module: "my_custom_project.SuperRulesSet"
  1275. # config:
  1276. # example_option: 'things'
  1277. ## Opentracing ##
  1278. # These settings enable opentracing, which implements distributed tracing.
  1279. # This allows you to observe the causal chains of events across servers
  1280. # including requests, key lookups etc., across any server running
  1281. # synapse or any other other services which supports opentracing
  1282. # (specifically those implemented with Jaeger).
  1283. #
  1284. opentracing:
  1285. # tracing is disabled by default. Uncomment the following line to enable it.
  1286. #
  1287. #enabled: true
  1288. # The list of homeservers we wish to send and receive span contexts and span baggage.
  1289. # See docs/opentracing.rst
  1290. # This is a list of regexes which are matched against the server_name of the
  1291. # homeserver.
  1292. #
  1293. # By defult, it is empty, so no servers are matched.
  1294. #
  1295. #homeserver_whitelist:
  1296. # - ".*"
  1297. # Jaeger can be configured to sample traces at different rates.
  1298. # All configuration options provided by Jaeger can be set here.
  1299. # Jaeger's configuration mostly related to trace sampling which
  1300. # is documented here:
  1301. # https://www.jaegertracing.io/docs/1.13/sampling/.
  1302. #
  1303. #jaeger_config:
  1304. # sampler:
  1305. # type: const
  1306. # param: 1
  1307. # Logging whether spans were started and reported
  1308. #
  1309. # logging:
  1310. # false