Browse Source

Minor bumps and fixes

undefined
Gattes 1 month ago
parent
commit
abab6cd41c
3 changed files with 6 additions and 3 deletions
  1. 3
    3
      docker-compose.yaml
  2. 2
    0
      install.sh
  3. 1
    0
      killall.sh

+ 3
- 3
docker-compose.yaml View File

@@ -31,7 +31,7 @@ services:
31 31
       matrix_db:
32 32
   
33 33
   element:
34
-    image: vectorim/element-web:v1.11.65
34
+    image: vectorim/element-web:v1.11.95
35 35
     restart: unless-stopped
36 36
     volumes:
37 37
       - ./config/element/element-config.json:/app/config.json
@@ -51,7 +51,7 @@ services:
51 51
       - synapse
52 52
 
53 53
   synapse-admin:
54
-    image: awesometechnologies/synapse-admin:0.10.1
54
+    image: awesometechnologies/synapse-admin:0.10.3
55 55
     restart: unless-stopped
56 56
     networks:
57 57
       matrix_server:
@@ -60,7 +60,7 @@ services:
60 60
       - synapse
61 61
 
62 62
   sliding-sync:
63
-    image: ghcr.io/matrix-org/sliding-sync:v0.99.16
63
+    image: ghcr.io/matrix-org/sliding-sync:v0.99.19
64 64
     restart: always
65 65
     environment:
66 66
       - SYNCV3_BINDADDR=:8008

+ 2
- 0
install.sh View File

@@ -158,6 +158,8 @@ server {
158 158
     # Hardening
159 159
     add_header Strict-Transport-Security "max-age=31536000; includeSubdomains; preload";
160 160
     add_header Content-Security-Policy "default-src 'self' ${DOMAIN} http: https: data: blob: 'unsafe-inline' 'unsafe-eval'" always;
161
+    add_header X-XSS-Protection "1; mode=block";
162
+    add_header X-Content-Type-Options nosniff;
161 163
     add_header X-Frame-Options "SAMEORIGIN";
162 164
 
163 165
     location /.well-known/matrix/client {

+ 1
- 0
killall.sh View File

@@ -15,6 +15,7 @@ if [ "${answer}" != "${answer#[Yy]}" ] ;then
15 15
     docker system prune -a -f
16 16
 
17 17
     echo "Removing packages"
18
+    cd /tmp
18 19
     apt remove -y --purge pwgen nginx python3-certbot-nginx coturn* docker*
19 20
     systemctl daemon-reload
20 21
 

Loading…
Cancel
Save