synapse/docs
Shay 4587decd67
Some checks failed
Tests / changes (push) Has been cancelled
Build docker images / build (push) Has been cancelled
Deploy the documentation / Calculate variables for GitHub Pages deployment (push) Has been cancelled
Build release artifacts / Calculate list of debian distros (push) Has been cancelled
Build release artifacts / Build wheels on ${{ matrix.os }} for ${{ matrix.arch }} (aarch64, ${{ startsWith(github.ref, 'refs/pull/') }}, ubuntu-22.04) (push) Has been cancelled
Build release artifacts / Build wheels on ${{ matrix.os }} for ${{ matrix.arch }} (x86_64, ${{ startsWith(github.ref, 'refs/pull/') }}, macos-13) (push) Has been cancelled
Build release artifacts / Build wheels on ${{ matrix.os }} for ${{ matrix.arch }} (x86_64, ${{ startsWith(github.ref, 'refs/pull/') }}, ubuntu-22.04) (push) Has been cancelled
Build release artifacts / Build sdist (push) Has been cancelled
Tests / check-lockfile (push) Has been cancelled
Tests / lint-crlf (push) Has been cancelled
Tests / lint-newsfile (push) Has been cancelled
Deploy the documentation / GitHub Pages (push) Has been cancelled
Build release artifacts / Build .deb packages (push) Has been cancelled
Build release artifacts / Attach assets to release (push) Has been cancelled
Tests / check-sampleconfig (push) Has been cancelled
Tests / check-schema-delta (push) Has been cancelled
Tests / lint (push) Has been cancelled
Tests / Typechecking (push) Has been cancelled
Tests / lint-pydantic (push) Has been cancelled
Tests / lint-clippy (push) Has been cancelled
Tests / lint-clippy-nightly (push) Has been cancelled
Tests / lint-rustfmt (push) Has been cancelled
Tests / lint-readme (push) Has been cancelled
Tests / linting-done (push) Has been cancelled
Tests / calculate-test-jobs (push) Has been cancelled
Tests / trial (push) Has been cancelled
Tests / trial-olddeps (push) Has been cancelled
Tests / trial-pypy (all, pypy-3.9) (push) Has been cancelled
Tests / sytest (push) Has been cancelled
Tests / export-data (push) Has been cancelled
Tests / portdb (11, 3.9) (push) Has been cancelled
Tests / portdb (17, 3.13) (push) Has been cancelled
Tests / complement (monolith, Postgres) (push) Has been cancelled
Tests / complement (monolith, SQLite) (push) Has been cancelled
Tests / complement (workers, Postgres) (push) Has been cancelled
Tests / cargo-test (push) Has been cancelled
Tests / cargo-bench (push) Has been cancelled
Tests / tests-done (push) Has been cancelled
Return suspended status when querying user account (#17952)
2024-11-22 12:37:19 +00:00
..
admin_api Return suspended status when querying user account (#17952) 2024-11-22 12:37:19 +00:00
changelogs
development Remove support for python 3.8 (#17908) 2024-11-06 19:36:01 +00:00
modules Clarify when 3PID invite module callbacks are called (#17627) 2024-10-14 11:31:49 +01:00
other
privacy_policy_templates/en
setup Add some documentation about backing up Synapse (#17931) 2024-11-18 14:05:49 +00:00
systemd-with-workers
usage Enable authenticated media by default (#17889) 2024-11-20 14:48:22 +00:00
website_files
.sample_config_header.yaml
ancient_architecture_notes.md
application_services.md Fix missing field in AS documentation (#14845) 2023-01-16 12:59:15 +00:00
architecture.md
auth_chain_diff.dot
auth_chain_diff.dot.png
auth_chain_difference_algorithm.md
CAPTCHA_SETUP.md
code_style.md Replace isort and black with ruff (#17620) 2024-08-30 10:07:46 +02:00
consent_tracking.md
delegate.md
deprecation_policy.md
element_logo_white_bg.svg Upload new logo with white bg and update readme to use it (#17387) 2024-07-10 14:59:24 +01:00
favicon.png
favicon.svg
federate.md
jwt.md Cleanup references to sample config in the docs and redirect users to configuration manual (#13077) 2022-06-30 09:21:39 -07:00
log_contexts.md
manhole.md
media_repository.md
message_retention_policies.md
metrics-howto.md Fix typo 2023-12-13 16:37:10 +00:00
openid.md Add Forgejo oidc provider config example (#17872) 2024-11-20 16:06:08 -06:00
opentracing.md
password_auth_providers.md
postgres.md Add some documentation about backing up Synapse (#17931) 2024-11-18 14:05:49 +00:00
presence_router_module.md
README.md
replication.md
reverse_proxy.md
room_and_user_statistics.md
sample_config.yaml
sample_log_config.yaml
server_notices.md
spam_checker.md
sso_mapping_providers.md
structured_logging.md
SUMMARY.md Add some documentation about backing up Synapse (#17931) 2024-11-18 14:05:49 +00:00
synctl_workers.md
tcp_replication.md
templates.md
turn-howto.md
upgrade.md Enable authenticated media by default (#17889) 2024-11-20 14:48:22 +00:00
user_directory.md
welcome_and_overview.md Fix outdated Security Disclosure Policy references (#17341) 2024-06-25 15:58:30 +01:00
workers.md Fix incorrectly documented config path argument (#17802) 2024-10-08 15:05:36 +01:00

Synapse Documentation

The documentation is currently hosted here. Please update any links to point to the new website instead.

About

This directory currently holds a series of markdown files documenting how to install, use and develop Synapse. The documentation is readable directly from this repository, but it is recommended to instead browse through the website for easier discoverability.

Adding to the documentation

Most of the documentation currently exists as top-level files, as when organising them into a structured website, these files were kept in place so that existing links would not break. The rest of the documentation is stored in folders, such as setup, usage, and development etc. All new documentation files should be placed in structured folders. For example:

To create a new user-facing documentation page about a new Single Sign-On protocol named "MyCoolProtocol", one should create a new file with a relevant name, such as "my_cool_protocol.md". This file might fit into the documentation structure at:

  • Usage
    • Configuration
      • User Authentication
        • Single Sign-On
          • My Cool Protocol

Given that, one would place the new file under usage/configuration/user_authentication/single_sign_on/my_cool_protocol.md.

Note that the structure of the documentation (and thus the left sidebar on the website) is determined by the list in SUMMARY.md. The final thing to do when adding a new page is to add a new line linking to the new documentation file:

- [My Cool Protocol](usage/configuration/user_authentication/single_sign_on/my_cool_protocol.md)

Building the documentation

The documentation is built with mdbook, and the outline of the documentation is determined by the structure of SUMMARY.md.

First, get mdbook. Then, from the root of the repository, build the documentation with:

mdbook build

The rendered contents will be outputted to a new book/ directory at the root of the repository. Please note that index.html is not built by default, it is created by copying over the file welcome_and_overview.html to index.html during deployment. Thus, when running mdbook serve locally the book will initially show a 404 in place of the index due to the above. Do not be alarmed!

You can also have mdbook host the docs on a local webserver with hot-reload functionality via:

mdbook serve

The URL at which the docs can be viewed at will be logged.

Configuration and theming

The look and behaviour of the website is configured by the book.toml file at the root of the repository. See mdbook's documentation on configuration for available options.

The site can be themed and additionally extended with extra UI and features. See website_files/README.md for details.