mkdocs.yml (3284B)
1 site_name: GoToSocial Documentation 2 site_url: https://docs.gotosocial.org 3 theme: 4 name: material 5 language: en 6 font: false 7 features: 8 - header.autohide 9 - content.code.copy 10 palette: 11 - scheme: slate 12 toggle: 13 icon: material/brightness-7 14 name: Switch to light mode 15 - scheme: default 16 toggle: 17 icon: material/brightness-4 18 name: Switch to dark mode 19 repo_url: https://github.com/superseriousbusiness/gotosocial 20 edit_uri: edit/main/docs/ 21 copyright: GoToSocial is licensed under the GNU AGPL v3 LICENSE. Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org 22 plugins: 23 - search: 24 lang: en 25 - social: 26 cards: true 27 cards_color: 28 fill: "#fd6a00" 29 text: "#fafaff" 30 - swagger-ui-tag: 31 supportedSubmitMethods: [] 32 syntaxHighlightTheme: obsidian 33 34 extra_css: 35 - assets/css/colours.css 36 37 markdown_extensions: 38 - admonition 39 - pymdownx.highlight: 40 anchor_linenums: true 41 line_spans: __span 42 pygments_lang_class: true 43 - pymdownx.inlinehilite 44 - pymdownx.snippets 45 - pymdownx.superfences 46 47 nav: 48 - "Home": "index.md" 49 - "FAQ": "faq.md" 50 - "User Guide": 51 - "user_guide/posts.md" 52 - "user_guide/settings.md" 53 - "user_guide/custom_css.md" 54 - "user_guide/password_management.md" 55 - "user_guide/rss.md" 56 - "Getting Started": 57 - "getting_started/index.md" 58 - "getting_started/releases.md" 59 - "Installation": 60 - "getting_started/installation/index.md" 61 - "getting_started/installation/metal.md" 62 - "getting_started/installation/container.md" 63 - "Reverse Proxy": 64 - "getting_started/reverse_proxy/index.md" 65 - "getting_started/reverse_proxy/nginx.md" 66 - "getting_started/reverse_proxy/apache-httpd.md" 67 - "getting_started/reverse_proxy/caddy.md" 68 - "getting_started/reverse_proxy/websocket.md" 69 - "getting_started/user_creation.md" 70 - "Configuration": 71 - "configuration/index.md" 72 - "configuration/general.md" 73 - "configuration/database.md" 74 - "configuration/web.md" 75 - "configuration/instance.md" 76 - "configuration/accounts.md" 77 - "configuration/media.md" 78 - "configuration/storage.md" 79 - "configuration/statuses.md" 80 - "configuration/tls.md" 81 - "configuration/oidc.md" 82 - "configuration/smtp.md" 83 - "configuration/syslog.md" 84 - "configuration/advanced.md" 85 - "configuration/observability.md" 86 - "Advanced": 87 - "advanced/index.md" 88 - "advanced/host-account-domain.md" 89 - "advanced/outgoing-proxy.md" 90 - "Caching": 91 - "advanced/caching/index.md" 92 - "advanced/caching/api.md" 93 - "advanced/caching/assets-media.md" 94 - "advanced/certificates.md" 95 - "Enhanced security": 96 - "advanced/security/index.md" 97 - "advanced/security/sandboxing.md" 98 - "advanced/security/firewall.md" 99 - "advanced/tracing.md" 100 101 - "Admin": 102 - "admin/settings.md" 103 - "admin/cli.md" 104 - "admin/backup_and_restore.md" 105 - "Federation": 106 - "federation/index.md" 107 - "federation/glossary.md" 108 - "federation/federating_with_gotosocial.md" 109 - "API Documentation": 110 - "api/swagger.md" 111 - "api/ratelimiting.md" 112 - "api/throttling.md"