|
@@ -10,9 +10,9 @@ To migrate from v1.105 to v1.126 you need to follow these steps:
|
10
|
10
|
```
|
11
|
11
|
location ~ ^/(client/|_matrix/client/unstable/org.matrix.msc3575/sync) {
|
12
|
12
|
proxy_pass http://10.10.10.7:8008;
|
13
|
|
- proxy_set_header X-Forwarded-For \$remote_addr;
|
14
|
|
- proxy_set_header X-Forwarded-Proto \$scheme;
|
15
|
|
- proxy_set_header Host \$host;
|
|
13
|
+ proxy_set_header X-Forwarded-For $remote_addr;
|
|
14
|
+ proxy_set_header X-Forwarded-Proto $scheme;
|
|
15
|
+ proxy_set_header Host $host;
|
16
|
16
|
}
|
17
|
17
|
```
|
18
|
18
|
|