浏览代码

Bumping up version

undefined
Miguel 1 个月前
父节点
当前提交
01fc922ac7
共有 2 个文件被更改,包括 5 次插入4 次删除
  1. 3
    2
      docker-compose.yaml
  2. 2
    2
      install.sh

+ 3
- 2
docker-compose.yaml 查看文件

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

+ 2
- 2
install.sh 查看文件

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

正在加载...
取消
保存