Compare commits
7 Commits
forceSsl
...
2.1.1+10.5
| Author | SHA1 | Date | |
|---|---|---|---|
| 5f9d7c7172 | |||
| a86f3f5072 | |||
| 4a06fb29ee | |||
| 86189220c1 | |||
| 5f0295b98a | |||
| 6268af51ff | |||
| e3268bc404 |
@ -33,4 +33,7 @@ ORG_NAME="My Organization"
|
||||
#SSO_DOMAIN=accounts.example.com
|
||||
#SSO_APP=mattermost
|
||||
#SSO_ID=
|
||||
#SECRET_MATTERMOST_SSO_SECRET_VERSION=v1
|
||||
#SECRET_MATTERMOST_SSO_SECRET_VERSION=v1
|
||||
|
||||
## Enable enterprise version (requires a valid license)
|
||||
#COMPOSE_FILE="$COMPOSE_FILE:compose.license.yml"
|
||||
@ -79,6 +79,13 @@ This is how to configure your Mattermost server to accept logins from your Authe
|
||||
- Go to https://YOURAPPNAME/admin_console/authentication/email
|
||||
- Set **Enable sign-in with email** and **Enable sign-in with username** to `false`
|
||||
|
||||
## Use a Mattermost Enterprise License
|
||||
**NOTE: This deploys non-FOSS code and requires you to pay Mattermost for a license to enable features. Not recommended unless you know what you're doing.**
|
||||
- `abra app config YOURAPPNAME`
|
||||
- Uncomment the section which starts with `## Enable enterprise version`
|
||||
- `abra app undeploy YOURAPPNAME`
|
||||
- `abra app deploy YOURAPPNAME`
|
||||
|
||||
|
||||
[`abra`]: https://git.coopcloud.tech/coop-cloud/abra
|
||||
[`coop-cloud/traefik`]: https://git.coopcloud.tech/coop-cloud/traefik
|
||||
|
||||
2
abra.sh
2
abra.sh
@ -1,4 +1,4 @@
|
||||
export ENTRYPOINT_VERSION=v1
|
||||
export ENTRYPOINT_VERSION=v2
|
||||
export MATTERMOST_CONFIG_VERSION=v1
|
||||
|
||||
reset_config() {
|
||||
|
||||
5
compose.license.yml
Normal file
5
compose.license.yml
Normal file
@ -0,0 +1,5 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: mattermost/mattermost-enterprise-edition:10.5.14
|
||||
@ -2,7 +2,7 @@ version: "3.8"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: mattermost/mattermost-team-edition:10.5.0
|
||||
image: mattermost/mattermost-team-edition:10.5.14
|
||||
environment:
|
||||
- TZ
|
||||
- MM_SQLSETTINGS_DRIVERNAME=postgres
|
||||
@ -28,7 +28,7 @@ services:
|
||||
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
|
||||
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
|
||||
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
|
||||
- "coop-cloud.${STACK_NAME}.version=1.5.3+9.11.8"
|
||||
- "coop-cloud.${STACK_NAME}.version=2.1.1+10.5.14"
|
||||
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
|
||||
- "backupbot.backup=true"
|
||||
- "backupbot.backup.path=/mattermost,/etc/ssl"
|
||||
|
||||
Reference in New Issue
Block a user