Skip to content

Commit f16c19c

Browse files
authored
Merge branch 'master' into v9.6-documentation
2 parents 2d93919 + 713724c commit f16c19c

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
path: build/html
2828
- name: cd/Upload artifacts to S3
2929
run: |
30-
aws s3 cp build/html s3://docs.mattermost.com/ --recursive --cache-control no-cache --acl public-read --no-progress
30+
aws s3 sync build/html s3://docs.mattermost.com/ --delete --cache-control no-cache --acl public-read --no-progress

source/collaborate/install-desktop-app.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ The following additional documentation resources are also available for the Matt
201201
Troubleshooting your Desktop App installation
202202
----------------------------------------------
203203

204-
Where is configuation stored locally?
204+
Where is configuration stored locally?
205205
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
206206

207207
The location of the Mattermost desktop app configuration file depends on the platform where you're running Mattermost (and, in the case of macOS, how you've chosen to install the app):

source/conf.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,11 @@ def setup(_: Sphinx):
139139
"administration/compliance-export.html":
140140
"https://docs.mattermost.com/comply/compliance-export.html",
141141
"administration/config-in-database.html":
142-
"https://docs.mattermost.com/configure/configuation-in-a-database.html",
142+
"https://docs.mattermost.com/configure/configuration-in-a-database.html",
143143
"administration/config-in-database.html#configuration-in-a-database.html":
144-
"https://docs.mattermost.com/configure/configuation-in-a-database.html",
144+
"https://docs.mattermost.com/configure/configuration-in-a-database.html",
145145
"administration/config-in-database.html#configuration-in-the-mattermost-database":
146-
"https://docs.mattermost.com/configure/configuation-in-a-database.html",
146+
"https://docs.mattermost.com/configure/configuration-in-a-database.html",
147147
"administration/config-settings.html#enable-hardened-mode-experimental":
148148
"https://docs.mattermost.com/configure/experimental-configuration-settings.html#enable-hardened-mode",
149149
"administration/data-retention.html":
@@ -245,7 +245,7 @@ def setup(_: Sphinx):
245245
"administration/config-settings.html#ad-ldap":
246246
"https://docs.mattermost.com/configure/configuration-settings.html#ad-ldap",
247247
"administration/config-in-database.html":
248-
"https://docs.mattermost.com/configure/configuation-in-a-database.html",
248+
"https://docs.mattermost.com/configure/configuration-in-a-database.html",
249249
"administration/config-settings.html#customization":
250250
"https://docs.mattermost.com/configure/configuration-settings.html#customization",
251251
"administration/config-settings.html#default-channels-experimental":
@@ -815,7 +815,7 @@ def setup(_: Sphinx):
815815

816816
# Configuration settings redirects
817817
"configure/configuration-in-mattermost-database.html":
818-
"https://docs.mattermost.com/configure/configuation-in-a-database.html",
818+
"https://docs.mattermost.com/configure/configuration-in-a-database.html",
819819
"configure/configuration-settings.html#channels":
820820
"https://docs.mattermost.com/configure/user-management-configuration-settings.html#channels",
821821
"configure/configuration-settings.html#allow-use-of-api-v3-endpoints":
@@ -1768,8 +1768,8 @@ def setup(_: Sphinx):
17681768
"https://docs.mattermost.com/manage/logging.html#syslog-target-configuration-options",
17691769
"configure/experimental-configuration-settings.html#syslog-max-queue-size":
17701770
"https://docs.mattermost.com/manage/logging.html#syslog-target-configuration-options",
1771-
"configure/configuation-in-mattermost-database.html":
1772-
"https://docs.mattermost.com/configure/configuation-in-a-database.html",
1771+
"configure/configuration-in-mattermost-database.html":
1772+
"https://docs.mattermost.com/configure/configuration-in-a-database.html",
17731773

17741774
# Deploy redirects
17751775
"deploy/mobile-apps-faq.html":

source/configure/configuration-settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ Mattermost configuration settings are organized into the following categories wi
2424
- :doc:`Compliance configuration settings </configure/compliance-configuration-settings>`
2525
- :doc:`Experimental configuration settings </configure/experimental-configuration-settings>`
2626

27-
In self-hosted Mattermost deployments, configuration settings are maintained in the ``config.json`` configuration file, located in the ``mattermost/config`` directory, or `stored in the database <https://docs.mattermost.com/configure/configuation-in-a-database.html>`__. System Admins managing self-hosted workspaces can also modify the ``config.json`` file directly using a text editor.
27+
In self-hosted Mattermost deployments, configuration settings are maintained in the ``config.json`` configuration file, located in the ``mattermost/config`` directory, or `stored in the database <https://docs.mattermost.com/configure/configuration-in-a-database.html>`__. System Admins managing self-hosted workspaces can also modify the ``config.json`` file directly using a text editor.
2828

2929
Configuration in database
3030
--------------------------
3131

3232
.. include:: ../_static/badges/selfhosted-only.rst
3333
:start-after: :nosearch:
3434

35-
Self-hosted system configuration can be stored in the database. This changes the Mattermost binary from reading the default ``config.json`` file to reading the configuration settings stored within a configuration table in the database. See the `Mattermost database configuration </configure/configuation-in-a-database.html>`__ documentation for migration details.
35+
Self-hosted system configuration can be stored in the database. This changes the Mattermost binary from reading the default ``config.json`` file to reading the configuration settings stored within a configuration table in the database. See the `Mattermost database configuration </configure/configuration-in-a-database.html>`__ documentation for migration details.
3636

3737
Environment variables
3838
---------------------

source/configure/environment-variables.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The name of the environment variable for any setting can be derived from the nam
2121

2222
.. warning::
2323

24-
- Environment variables for Mattermost settings that are set within the active shell will take effect when migrating configuration. For more information, see the `configuration in a database </configure/configuation-in-a-database.html>`__ documentation.
24+
- Environment variables for Mattermost settings that are set within the active shell will take effect when migrating configuration. For more information, see the `configuration in a database </configure/configuration-in-a-database.html>`__ documentation.
2525
- Database connection strings for the database read and search replicas need to be formatted using `URL encoding <https://www.w3schools.com/tags/ref_urlencode.asp>`__. Incorrectly formatted strings may cause some characters to terminate the string early, resulting in issues when the connection string is parsed.
2626

2727
Override Mattermost license file

source/getting-started/enterprise-roll-out-checklist.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Much of the preparation work is focused on ensuring the environment is deployed
140140

141141
- (Optional) Set up configuration management via the database instead of a config file for high available environments
142142

143-
- Resource: https://docs.mattermost.com/configure/configuation-in-a-database.html
143+
- Resource: https://docs.mattermost.com/configure/configuration-in-a-database.html
144144

145145
- Install and configure File Storage
146146

source/guides/self-hosted-administration.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This section of the guide is for system admins of self-hosted Mattermost servers
1414

1515
Mattermost self-hosted billing </manage/self-hosted-billing>
1616
Mattermost error codes </manage/error-codes>
17-
Store configuration in the database </configure/configuation-in-a-database>
17+
Store configuration in the database </configure/configuration-in-a-database>
1818
Bulk loading data </onboard/bulk-loading-data>
1919
SMTP email setup </configure/smtp-email>
2020
Email templates </configure/email-templates>
@@ -34,7 +34,7 @@ This section of the guide is for system admins of self-hosted Mattermost servers
3434

3535
* :doc:`Mattermost self-hosted billing </manage/self-hosted-billing>` - Manage your Mattermost subscription.
3636
* :doc:`Mattermost error codes </manage/error-codes>` - Learn more about the error code you're encountering in Mattermost.
37-
* :doc:`Include configuration in the Mattermost database </configure/configuation-in-a-database>` - Store Mattermost configuration information in your database rather than as a JSON file. We recommend this for High Availability environments.
37+
* :doc:`Include configuration in the Mattermost database </configure/configuration-in-a-database>` - Store Mattermost configuration information in your database rather than as a JSON file. We recommend this for High Availability environments.
3838
* :doc:`Bulk loading data </onboard/bulk-loading-data>` - Import bulk data into Mattermost for teams, channels, users, post content, and more.
3939
* :doc:`SMTP email setup </configure/smtp-email>` - Connect to an email server to send emails for password resets and system notifications.
4040
* :doc:`Email templates </configure/email-templates>` - Alter the transactional emails Mattermost sends to your users.

source/manage/mmctl-command-line-tool.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1927,7 +1927,7 @@ Migrate a file-based configuration to (or from) a database-based configuration.
19271927
19281928
.. note::
19291929
1930-
- To change the store type to use the database, a System Admin needs to set a ``MM_CONFIG`` `environment variable </configure/configuation-in-a-database.html#create-an-environment-file>`_ and restart the Mattermost server.
1930+
- To change the store type to use the database, a System Admin needs to set a ``MM_CONFIG`` `environment variable </configure/configuration-in-a-database.html#create-an-environment-file>`_ and restart the Mattermost server.
19311931
- The ``migrate`` function requires local mode to be enabled. To do this, add the following line to your Mattermost Environment file:
19321932
19331933
.. code-block:: sh

0 commit comments

Comments
 (0)