Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new disable cloud config setting for self-hosted deployments #7012

Merged
merged 22 commits into from
Apr 16, 2024
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
7ee7022
Update conf.py
amyblais Mar 15, 2024
118113a
Merge branch 'master' into v9.7-documentation
amyblais Mar 15, 2024
79acf46
Update download-latest-tarball.rst
amyblais Mar 15, 2024
c268ef3
Update download-latest-tarball.rst
amyblais Mar 15, 2024
8248027
Update download-latest-tarball.rst
amyblais Mar 15, 2024
9ce49dc
Merge branch 'master' into v9.7-documentation
amyblais Mar 19, 2024
09e9150
Merge branch 'master' into v9.7-documentation
amyblais Mar 19, 2024
f5b5136
Merge branch 'master' into v9.7-documentation
amyblais Mar 19, 2024
4830338
Merge branch 'master' into v9.7-documentation
amyblais Mar 19, 2024
4274631
Update download-latest-tarball.rst
amyblais Mar 19, 2024
355fc09
Merge branch 'master' into v9.7-documentation
amyblais Mar 19, 2024
4d59aa0
Merge branch 'master' into v9.7-documentation
amyblais Mar 21, 2024
107a03d
Merge branch 'master' into v9.7-documentation
amyblais Mar 22, 2024
b18ba9e
Merge branch 'master' into v9.7-documentation
amyblais Mar 25, 2024
6e80e27
Merge branch 'master' into v9.7-documentation
amyblais Mar 25, 2024
96f8371
Merge branch 'master' into v9.7-documentation
amyblais Mar 27, 2024
9c52439
Corrected config setting name for onboarding flow (#7006)
cwarnermm Mar 28, 2024
9d70857
Merge branch 'master' into v9.7-documentation
amyblais Mar 28, 2024
d0920fe
Added new disable cloud config setting for self-hosted deployments
cwarnermm Mar 28, 2024
b400068
Incorporated reviewer feedback
cwarnermm Apr 9, 2024
0a5c2e7
Merge branch 'master' into disable-cloud-config
cwarnermm Apr 16, 2024
1eafd48
Merge branch 'master' into disable-cloud-config
cwarnermm Apr 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion source/configure/environment-configuration-settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Both self-hosted and Cloud admins can access the following configuration setting
- `Session Lengths <#session-lengths>`__
- `Performance Monitoring <#performance-monitoring>`__
- `Developer <#developer>`__
- `config. json-only settings <#config-json-only-settings>`__

----

Expand Down Expand Up @@ -164,4 +165,37 @@ Developer
:start-after: :nosearch:

.. include:: developer-mode-configuration-settings.rst
:start-after: :nosearch:
:start-after: :nosearch:

config.json-only settings
-------------------------

.. include:: ../_static/badges/allplans-selfhosted.rst
:start-after: :nosearch:

.. config:setting:: disable-customer-portal-requests
:displayname: Disable customer portal requests
:systemconsole: N/A
:configjson: .CloudSettings.Disable
:environment: MM_CLOUDSETTINGS_DISABLE
:description: Enable or disable server requests to the Mattermost Customer Portal.

- **true**: Server-side requests made to the customer portal are enabled, but will always fail in air-gapped and restricted environments.
- **false**: **(Default)** Server-side requests made to the customer portal are disabled.

Disable Customer Portal requests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

+-----------------------------------------------+---------------------------------------------------------------------------+
| Enable or disable customer portal requests. | - System Config path: **N/A** |
| | - ``config.json setting``: ``".CloudSettings.Disable": false",`` |
| - **true**: Server-side requests made to the | - Environment variable: ``MM_CLOUDSETTINGS_DISABLE`` |
| Mattermost Customer Portal are enabled, | |
| but will always fail in air-gapped and | |
| restricted deployment environments. | |
| - **false**: **(Default)** Server-side | |
| requests made to the customer portal are | |
| disabled. | |
+-----------------------------------------------+---------------------------------------------------------------------------+
| **Note**: Cloud admins can’t modify this configuration setting. |
+-----------------------------------------------+---------------------------------------------------------------------------+
Loading