Browse Source

Bumping up version

undefined
Miguel 1 month ago
parent
commit
01fc922ac7
2 changed files with 5 additions and 4 deletions
  1. 3
    2
      docker-compose.yaml
  2. 2
    2
      install.sh

+ 3
- 2
docker-compose.yaml View File

@@ -2,7 +2,7 @@
2 2
 services:
3 3
 
4 4
   synapse:
5
-    image: ghcr.io/element-hq/synapse:v1.105.1
5
+    image: ghcr.io/element-hq/synapse:v1.126.1
6 6
     restart: always
7 7
     environment:
8 8
       - SYNAPSE_CONFIG_PATH=/data/homeserver.yaml
@@ -61,7 +61,6 @@ services:
61 61
 
62 62
   sliding-sync:
63 63
     image: ghcr.io/matrix-org/sliding-sync:v0.99.16
64
-
65 64
     restart: always
66 65
     environment:
67 66
       - SYNCV3_BINDADDR=:8008
@@ -72,6 +71,8 @@ services:
72 71
       matrix_server:
73 72
         ipv4_address: 10.10.10.7
74 73
       matrix_db:
74
+    ports:
75
+      - 8009:8008
75 76
     depends_on:
76 77
       - synapse
77 78
 

+ 2
- 2
install.sh View File

@@ -116,7 +116,7 @@ user_directory:
116 116
     search_all_users: true
117 117
     prefer_local_users: true
118 118
     show_locked_users: true
119
-turn_allow_guests: False
119
+turn_allow_guests: false
120 120
 turn_user_lifetime: 86400000
121 121
 turn_shared_secret: "${TURN_STATIC_SECRET}"
122 122
 turn_uris: [ "turn:${DOMAIN}?transport=udp" ]
@@ -186,7 +186,7 @@ server {
186 186
 
187 187
     # Sliding Sync
188 188
     location ~ ^/(client/|_matrix/client/unstable/org.matrix.msc3575/sync) {
189
-        proxy_pass http://10.10.10.7:8008;
189
+        proxy_pass http://10.10.10.7:8009;
190 190
         proxy_set_header X-Forwarded-For \$remote_addr;
191 191
         proxy_set_header X-Forwarded-Proto \$scheme;
192 192
         proxy_set_header Host \$host;

Loading…
Cancel
Save