Compare commits

...
18 Commits
Author SHA1 Message Date
moosemower 0cf7191b71 chore: publish 1.0.0+v1.12.18 release 2026-06-07 10:59:49 -07:00
moosemower 6b4822a04e only use sso redirection if sso is enabled 2026-06-07 10:59:27 -07:00
moritz b42d80bcc5 chore: publish 0.13.0+v1.12.18 release 2026-05-18 18:08:49 +02:00
moritz aa8793a1df chore: update image tags 2026-05-18 18:06:59 +02:00
carla b8a1ae648a chore: publish 0.12.0+v1.12.13 release 2026-03-24 16:53:53 +01:00
carla bb930287ed chore: publish 0.11.0+v1.11.105 release 2025-07-09 09:52:51 +02:00
moritz 620fdf6698 chore: publish 0.10.0+v1.11.92 release 2025-02-11 17:38:24 +01:00
cas 5d58b22d1c Update .drone.yml 2025-01-08 10:09:12 -08:00
moritz 6b40b6b068 chore: publish 0.9.0+v1.11.83 release 2024-10-29 15:18:35 +01:00
3wordchant 938e40ac99 chore: publish 0.8.1+v1.11.78 release 2024-09-25 13:41:58 -04:00
moritz 316f70c69c chore: publish 0.8.0+v1.11.69 release 2024-07-16 14:31:18 +02:00
moritz 33f7488c9a chore: publish 0.7.0+v1.11.63 release 2024-04-08 22:40:09 +02:00
3wordchant 5669976814 chore: publish 0.6.4+v1.11.57 release 2024-02-08 14:33:17 -03:00
3wordchant 1a81fe6d0d chore: publish 0.6.3+v1.11.49 release 2023-11-13 13:12:30 +00:00
philippr 07f7e73e28 chore: publish 0.6.2+v1.11.36 release 2023-07-19 10:26:39 +02:00
moritz f191821073 fix matrix domain env for automatic replacement 2023-07-10 21:44:32 +02:00
knoflook 09738a4c34 chore: publish 0.6.1+v1.11.30 release 2023-04-25 14:42:08 +02:00
moritz 11130fb45b chore: publish 0.6.0+v1.11.28 release 2023-04-05 21:48:49 +02:00
6 changed files with 11 additions and 6 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ steps:
from_secret: drone_abra-bot_token
fork: true
repositories:
- coop-cloud/auto-recipes-catalogue-json
- toolshed/auto-recipes-catalogue-json
trigger:
event: tag
+4 -1
View File
@@ -1,8 +1,11 @@
TYPE=element-web
TIMEOUT=400
DOMAIN=element-web.example.com
LETS_ENCRYPT_ENV=production
HOMESERVER=matrix.example.com
HOMESERVER=matrix-synapse.example.com
SERVER_NAME=mymatrix
BRAND=mymatrix
USE_SSO=false
+1 -1
View File
@@ -1 +1 @@
export CONFIG_JSON_VERSION=v3
export CONFIG_JSON_VERSION=v4
+3 -2
View File
@@ -3,11 +3,12 @@ version: "3.8"
services:
app:
image: "vectorim/element-web:v1.11.22"
image: "vectorim/element-web:v1.12.18"
environment:
- DOMAIN
- HOMESERVER
- SERVER_NAME
- USE_SSO=${USE_SSO:-false}
networks:
- proxy
configs:
@@ -22,7 +23,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=0.5.1+v1.11.22"
- "coop-cloud.${STACK_NAME}.version=0.13.0+v1.12.18"
networks:
proxy:
+1 -1
View File
@@ -6,7 +6,7 @@
}
},
"sso_redirect_options": {
"immediate": true
"immediate": {{ env "USE_SSO" }}
},
"disable_custom_urls": false,
"disable_guests": true,
+1
View File
@@ -0,0 +1 @@
Recipe now _disables_ SSO by default. Set USE_SSO=true in your app config to override this behaviour if you have SSO!