Add stubs
This commit is contained in:
parent
304186774e
commit
6e444b2d54
17
config.toml
17
config.toml
|
@ -18,15 +18,20 @@ enableGitInfo = true
|
|||
[[menu.docs]]
|
||||
name = "User guide"
|
||||
weight = 1
|
||||
identifier = "using-mastodon"
|
||||
url = "/using-mastodon/"
|
||||
identifier = "usage"
|
||||
url = "/usage/"
|
||||
[[menu.docs]]
|
||||
name = "Administrator guide"
|
||||
weight = 2
|
||||
identifier = "running-mastodon"
|
||||
url = "/running-mastodon/"
|
||||
identifier = "administration"
|
||||
url = "/administration/"
|
||||
[[menu.docs]]
|
||||
name = "Developer guide"
|
||||
weight = 3
|
||||
identifier = "contributing-to-mastodon"
|
||||
url = "/contributing-to-mastodon/"
|
||||
identifier = "development"
|
||||
url = "/development/"
|
||||
[[menu.docs]]
|
||||
name = "API"
|
||||
weight = 4
|
||||
identifier = "api"
|
||||
url = "/api/"
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
title: Configuration
|
||||
menu:
|
||||
docs:
|
||||
parent: administration
|
||||
weight: 2
|
||||
---
|
||||
|
||||
## Basic
|
||||
### Federation
|
||||
### Secrets
|
||||
## Database connections
|
||||
### PostgreSQL
|
||||
### Redis
|
||||
### ElasticSearch
|
||||
## E-mail
|
||||
## File storage
|
||||
### Local file storage
|
||||
### Amazon S3 and compatible
|
||||
### Swift
|
||||
## External authentication
|
||||
### LDAP
|
||||
### PAM
|
||||
### CAS
|
||||
### SAML
|
||||
## Hidden services
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
title: Installation
|
||||
menu:
|
||||
docs:
|
||||
parent: administration
|
||||
weight: 1
|
||||
---
|
||||
|
||||
## Basic server setup (optional)
|
||||
## Pre-requisites
|
||||
### System packages
|
||||
### Installing Ruby
|
||||
### Installing Node.js
|
||||
## Setup
|
||||
### Setting up PostgreSQL
|
||||
### Setting up Mastodon
|
||||
### Setting up nginx
|
||||
### Acquiring a SSL certificate
|
||||
### Setting up systemd services
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
title: Optional features
|
||||
menu:
|
||||
docs:
|
||||
parent: administration
|
||||
weight: 5
|
||||
---
|
||||
|
||||
## Full-text search
|
||||
## Hidden services
|
||||
## Login via LDAP/PAM/CAS/SAML
|
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: Post-installation steps
|
||||
menu:
|
||||
docs:
|
||||
parent: administration
|
||||
weight: 3
|
||||
---
|
||||
|
||||
## Creating an admin account
|
||||
## Filling in server information
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
title: Scaling up
|
||||
menu:
|
||||
docs:
|
||||
parent: administration
|
||||
weight: 4
|
||||
---
|
||||
|
||||
## Transaction pooling with pgBouncer
|
||||
## Separate Redis for cache
|
||||
## Read-replicas
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: Authentication
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
weight: 1
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: Entities
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
weight: 2
|
||||
---
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: Installation
|
||||
menu:
|
||||
docs:
|
||||
identifier: installation-dev
|
||||
parent: development
|
||||
weight: 1
|
||||
---
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title: Basics
|
||||
menu:
|
||||
docs:
|
||||
parent: usage
|
||||
weight: 1
|
||||
---
|
||||
## Sign up
|
||||
## Edit profile
|
||||
### Picture, name and bio
|
||||
### Profile metadata
|
||||
### Link verification
|
||||
## Posting
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
title: Moderation
|
||||
menu:
|
||||
docs:
|
||||
parent: usage
|
||||
weight: 4
|
||||
---
|
||||
## Individual moderation
|
||||
### Disable login
|
||||
### Silence
|
||||
### Suspend
|
||||
## Server-wide moderation
|
||||
### Reject media
|
||||
### Silence
|
||||
### Suspend
|
||||
## Spam-fighting measures
|
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
title: Privacy
|
||||
menu:
|
||||
docs:
|
||||
parent: usage
|
||||
weight: 1
|
||||
---
|
||||
## Publishing levels
|
||||
## Blocking and muting
|
Loading…
Reference in New Issue