2 Commits

Author SHA1 Message Date
  Gattes 6493498d6f Adding Upgrade docs 3 months ago
  Gattes 498ca4219f Adding Upgrade docs 3 months ago
1 changed files with 6 additions and 6 deletions
  1. 6
    6
      docs/upgrading/README.md

+ 6
- 6
docs/upgrading/README.md View File

4
 
4
 
5
 To migrate from v1.105 to v1.126 you need to follow these steps:
5
 To migrate from v1.105 to v1.126 you need to follow these steps:
6
 
6
 
7
-1. Copy the latest content of the [docker-compose.yaml](../../docker-compose.yaml) file, all of it and override the file `/opt/matrix/docker-compose.yaml` in the server with the latest content.
8
-2. Modify the nginx config by removing the following lines from the `/etc/nginx/sites-enabled/default` config file (remove all of them):
7
+- Copy the latest content of the [docker-compose.yaml](../../docker-compose.yaml) file, all of it and override the file `/opt/matrix/docker-compose.yaml` in the server with the latest content.
8
+- Modify the nginx config by removing the following lines from the `/etc/nginx/sites-enabled/default` config file (remove all of them):
9
 
9
 
10
 ```
10
 ```
11
     location ~ ^/(client/|_matrix/client/unstable/org.matrix.msc3575/sync) {
11
     location ~ ^/(client/|_matrix/client/unstable/org.matrix.msc3575/sync) {
16
     }
16
     }
17
 ```
17
 ```
18
 
18
 
19
-3. Edit the same file and look for the word `org.matrix.msc3575.proxy`. Change it for `m.identity_server`
20
-4. Add the following value to the file `/opt/matrix/config/synapse/homeserver.yaml` (Change the `DOMAIN` value accordingly!!):
19
+- Edit the same file and look for the word `org.matrix.msc3575.proxy`. Change it for `m.identity_server`
20
+- Add the following value to the file `/opt/matrix/config/synapse/homeserver.yaml` (Change the `DOMAIN` value accordingly!!):
21
 
21
 
22
 ```yaml
22
 ```yaml
23
 public_baseurl: "https://DOMAIN"
23
 public_baseurl: "https://DOMAIN"
24
 ```
24
 ```
25
 
25
 
26
-5. Now it's time to bunce it all, run the following as root:
26
+- Now it's time to bunce it all, run the following as root:
27
 
27
 
28
 ```
28
 ```
29
 # Restart nginx
29
 # Restart nginx
32
 % systemctl restart matrix.service
32
 % systemctl restart matrix.service
33
 ```
33
 ```
34
 
34
 
35
-6. Give it a few minutes to come back up and you are ready to go :)
35
+- Give it a few minutes to come back up and you are ready to go :)

Loading…
Cancel
Save