fix: consistent compression config

This commit is contained in:
decentral1se 2023-01-08 01:56:13 +01:00
parent 008ec1126b
commit eb541c41ee
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
export DISCORD_BRIDGE_YAML_VERSION=v2 export DISCORD_BRIDGE_YAML_VERSION=v2
export ENTRYPOINT_CONF_VERSION=v1 export ENTRYPOINT_CONF_VERSION=v1
export HOMESERVER_YAML_VERSION=v16 export HOMESERVER_YAML_VERSION=v17
export LOG_CONFIG_VERSION=v2 export LOG_CONFIG_VERSION=v2
export SHARED_SECRET_AUTH_VERSION=v1 export SHARED_SECRET_AUTH_VERSION=v1
export SIGNAL_BRIDGE_YAML_VERSION=v3 export SIGNAL_BRIDGE_YAML_VERSION=v3

View File

@ -105,10 +105,10 @@ listeners:
resources: resources:
{{ if eq (env "KEYCLOAK_ENABLED") "1" }} {{ if eq (env "KEYCLOAK_ENABLED") "1" }}
- names: [client, openid, federation] - names: [client, openid, federation]
compress: false compress: true
{{ else }} {{ else }}
- names: [client, federation] - names: [client, federation]
compress: false compress: true
{{ end }} {{ end }}
{{ end }} {{ end }}