-
Notifications
You must be signed in to change notification settings - Fork 428
/
mkdocs.yml
221 lines (220 loc) · 10.7 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
site_name: MongooseIM Docs
site_description: "Documentation for MongooseIM - a mobile messaging platform with focus on performance and scalability"
site_author: "Erlang Solutions"
site_url: https://esl.github.io/MongooseDocs/
repo_url: https://github.com/esl/MongooseIM
edit_uri: edit/master/doc/
docs_dir: doc
theme:
name: material
favicon: favicon.ico
logo: MongooseIM_logo_white.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- navigation.instant
- navigation.instant.progress
- navigation.top
- navigation.footer
- content.tabs.link
- toc.follow
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/docker
link: https://hub.docker.com/r/erlangsolutions/mongooseim/
- icon: fontawesome/brands/github
link: https://github.com/esl/MongooseIM
plugins:
- include-markdown
- search:
separator: '[\s\-_,:!=\[\]()"/<>]+|\.(?!\d)|&[lg]t;'
lang: en
extra_css: [css/custom.css]
markdown_extensions:
- pymdownx.highlight:
linenums: true
- pymdownx.superfences
- admonition
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- toc:
permalink: true
nav:
- 'Home': 'index.md'
- 'Getting Started':
- 'Installation': 'getting-started/Installation.md'
- 'Quick Setup': 'getting-started/Quick-setup.md'
- 'User Guide':
- 'Features': 'user-guide/Features.md'
- 'Supported Standards': 'user-guide/Supported-standards.md'
- 'High-level Architecture': 'user-guide/High-level-Architecture.md'
- Tutorials:
- 'How to Build MongooseIM from source code': 'tutorials/How-to-build.md'
- 'How to build and run MongooseIM docker image': 'tutorials/Docker-build.md'
- 'How to configure MongooseIM to use CETS instead of Mnesia': 'tutorials/CETS-configure.md'
- 'How to Set up Push Notifications': 'tutorials/push-notifications/Push-notifications.md'
- 'How to Set up Push Notifications on the client side': 'tutorials/push-notifications/Push-notifications-client-side.md'
- 'How to Set up MongoosePush': 'tutorials/push-notifications/MongoosePush-setup.md'
- 'How to Set up MongooseICE': 'tutorials/ICE_tutorial.md'
- 'How to Build an iOS messaging app': 'tutorials/iOS_tutorial.md'
- 'How to Set up Jingle/SIP': 'tutorials/Jingle-SIP-setup.md'
- 'How to Set up SASL client certificate authentication': 'tutorials/client-certificate.md'
- 'Open XMPP Extensions':
- 'MUC light': 'open-extensions/muc_light.md'
- 'Inbox': 'open-extensions/inbox.md'
- 'Smart Markers': 'open-extensions/smart-markers.md'
- 'Token-based reconnection': 'open-extensions/token-reconnection.md'
- 'MAM': 'open-extensions/mam.md'
- Configuration:
- 'Configuration Files': 'configuration/configuration-files.md'
- 'Options: General': 'configuration/general.md'
- 'Options: Listen': 'configuration/listen.md'
- 'Options: Auth': 'configuration/auth.md'
- 'Options: Internal Databases': 'configuration/internal-databases.md'
- 'Options: Outgoing connections': 'configuration/outgoing-connections.md'
- 'Options: Services': 'configuration/Services.md'
- 'Options: Extension Modules': 'configuration/Modules.md'
- 'Options: Shaper': 'configuration/shaper.md'
- 'Options: Acl': 'configuration/acl.md'
- 'Options: Access': 'configuration/access.md'
- 'Options: S2S': 'configuration/s2s.md'
- 'Options: Host config': 'configuration/host_config.md'
- 'Options: Instrumentation': 'configuration/instrumentation.md'
- 'Release Options': 'configuration/release-options.md'
- 'Erlang Cookie Security': 'configuration/Erlang-cookie-security.md'
- 'TLS Hardening': 'configuration/TLS-hardening.md'
- 'Database Backends Configuration': 'configuration/database-backends-configuration.md'
- 'Listeners':
- 'Client to server (C2S)': 'listeners/listen-c2s.md'
- 'Server to server (S2S)': 'listeners/listen-s2s.md'
- 'XMPP components (service)': 'listeners/listen-components.md'
- 'HTTP-based services': 'listeners/listen-http.md'
- 'Authentication Methods':
- 'RDBMS': 'authentication-methods/rdbms.md'
- 'External': 'authentication-methods/external.md'
- 'Anonymous': 'authentication-methods/anonymous.md'
- 'LDAP': 'authentication-methods/ldap.md'
- 'JWT': 'authentication-methods/jwt.md'
- 'HTTP': 'authentication-methods/http.md'
- 'PKI': 'authentication-methods/pki.md'
- 'Dummy': 'authentication-methods/dummy.md'
- 'Extension modules':
- 'mod_adhoc': 'modules/mod_adhoc.md'
- 'mod_amp': 'modules/mod_amp.md'
- 'mod_auth_token': 'modules/mod_auth_token.md'
- 'mod_bind2': 'modules/mod_bind2.md'
- 'mod_blocking': 'modules/mod_blocking.md'
- 'mod_bosh': 'modules/mod_bosh.md'
- 'mod_caps': 'modules/mod_caps.md'
- 'mod_cache_users': 'modules/mod_cache_users.md'
- 'mod_carboncopy': 'modules/mod_carboncopy.md'
- 'mod_csi': 'modules/mod_csi.md'
- 'mod_disco': 'modules/mod_disco.md'
- 'mod_domain_isolation': 'modules/mod_domain_isolation.md'
- 'mod_event_pusher':
- 'mod_event_pusher': 'modules/mod_event_pusher.md'
- 'HTTP backend': 'modules/mod_event_pusher_http.md'
- 'Push backend': 'modules/mod_event_pusher_push.md'
- 'RabbitMQ backend': 'modules/mod_event_pusher_rabbit.md'
- 'SNS backend': 'modules/mod_event_pusher_sns.md'
- 'mod_extdisco': 'modules/mod_extdisco.md'
- 'mod_global_distrib': 'modules/mod_global_distrib.md'
- 'mod_http_upload': 'modules/mod_http_upload.md'
- 'mod_inbox': 'modules/mod_inbox.md'
- 'mod_jingle_sip': 'modules/mod_jingle_sip.md'
- 'mod_keystore': 'modules/mod_keystore.md'
- 'mod_last': 'modules/mod_last.md'
- 'mod_mam': 'modules/mod_mam.md'
- 'mod_muc': 'modules/mod_muc.md'
- 'mod_muc_log': 'modules/mod_muc_log.md'
- 'mod_muc_light': 'modules/mod_muc_light.md'
- 'mod_offline': 'modules/mod_offline.md'
- 'mod_offline_stub': 'modules/mod_offline_stub.md'
- 'mod_ping': 'modules/mod_ping.md'
- 'mod_presence': 'modules/mod_presence.md'
- 'mod_privacy': 'modules/mod_privacy.md'
- 'mod_private': 'modules/mod_private.md'
- 'mod_pubsub': 'modules/mod_pubsub.md'
- 'mod_push_service_mongoosepush': 'modules/mod_push_service_mongoosepush.md'
- 'mod_register': 'modules/mod_register.md'
- 'mod_roster': 'modules/mod_roster.md'
- 'mod_sasl2': 'modules/mod_sasl2.md'
- 'mod_shared_roster_ldap': 'modules/mod_shared_roster_ldap.md'
- 'mod_smart_markers': 'modules/mod_smart_markers.md'
- 'mod_sic': 'modules/mod_sic.md'
- 'mod_stream_management': 'modules/mod_stream_management.md'
- 'mod_time': 'modules/mod_time.md'
- 'mod_vcard': 'modules/mod_vcard.md'
- 'mod_version': 'modules/mod_version.md'
- 'REST API':
- 'Client/frontend': 'rest-api/Client-frontend.md'
- 'Administration backend': 'rest-api/Administration-backend.md'
- 'GraphQL API':
- 'User': 'graphql-api/User-GraphQL.md'
- 'Admin': 'graphql-api/Admin-GraphQL.md'
- 'Operation and Maintenance':
- 'GDPR considerations': 'operation-and-maintenance/gdpr-considerations.md'
- 'Cluster management considerations': 'operation-and-maintenance/Cluster-management-considerations.md'
- 'Cluster configuration and node management': 'operation-and-maintenance/Cluster-configuration-and-node-management.md'
- 'Logging & monitoring': 'operation-and-maintenance/Logging-&-monitoring.md'
- 'Logging configuration': 'operation-and-maintenance/Logging.md'
- 'Logging with Humio': 'operation-and-maintenance/Humio.md'
- 'Logging fields': 'operation-and-maintenance/Logging-fields.md'
- 'Rolling upgrade': 'operation-and-maintenance/Rolling-upgrade.md'
- 'Cluster restart': 'operation-and-maintenance/Cluster-restart.md'
- 'Metrics': 'operation-and-maintenance/MongooseIM-metrics.md'
- 'System Metrics Privacy Policy': 'operation-and-maintenance/System-Metrics-Privacy-Policy.md'
- 'Distribution over TLS': 'operation-and-maintenance/tls-distribution.md'
- 'Known issues': 'operation-and-maintenance/known-issues.md'
- "Developer's Guide":
- 'Release/Installation configuration': 'developers-guide/release_config.md'
- 'Bootstrap scripts': 'developers-guide/Bootstrap-Scripts.md'
- 'Testing MongooseIM': 'developers-guide/Testing-MongooseIM.md'
- 'Logging': 'developers-guide/logging.md'
- 'Hooks and Handlers': 'developers-guide/Hooks-and-handlers.md'
- 'Hooks description': 'developers-guide/hooks_description.md'
- 'Accumulators': 'developers-guide/accumulators.md'
- 'Stanza routing': 'developers-guide/Stanza-routing.md'
- 'Domain management': 'developers-guide/domain_management.md'
- 'mod_amp development': 'developers-guide/mod_amp_developers_guide.md'
- 'mod_muc_light developers doc': 'developers-guide/mod_muc_light_developers_guide.md'
- 'SCRAM serialization format': 'developers-guide/SCRAM-serialization.md'
- 'xep-tool usage': 'developers-guide/xep_tool.md'
- 'FIPS mode': 'developers-guide/OpenSSL-and-FIPS.md'
- 'Basic IQ Handler': 'developers-guide/Basic-iq-handler.md'
- 'mongoose_wpool': 'developers-guide/mongoose_wpool.md'
- Migration Guide:
- '3.1.1 to 3.2.0': 'migrations/3.1.1_3.2.0.md'
- '3.3.0 to 3.4.0': 'migrations/3.3.0_3.4.0.md'
- '3.5.0 to 3.6.0': 'migrations/3.5.0_3.6.0.md'
- '3.6.0 to 3.7.0': 'migrations/3.6.0_3.7.0.md'
- '3.7.0 to 4.0.0': 'migrations/3.7.0_4.0.0.md'
- '4.0.0 to 4.0.1': 'migrations/4.0.0_4.0.1.md'
- '4.0.1 to 4.1.0': 'migrations/4.0.1_4.1.0.md'
- '4.1.0 to 4.2.0': 'migrations/4.1.0_4.2.0.md'
- '4.2.0 to 5.0.0': 'migrations/4.2.0_5.0.0.md'
- '5.0.0 to 5.1.0': 'migrations/5.0.0_5.1.0.md'
- '5.1.0 to 6.0.0': 'migrations/5.1.0_6.0.0.md'
- '6.0.0 to 6.1.0': 'migrations/6.0.0_6.1.0.md'
- '6.1.0 to 6.2.0': 'migrations/6.1.0_6.2.0.md'
- '6.2.0 to 6.2.1': 'migrations/6.2.0_6.2.1.md'
- '6.2.1 to 6.3.0': 'migrations/6.2.1_6.3.0.md'
- 'MAM MUC migration helper': 'migrations/jid-from-mam-muc-script.md'
- 'Contributions to the Ecosystem': 'Contributions.md'
- 'MongooseIM History': 'History.md'
not_in_nav: |
user-guide/Supported-XEPs.md