mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-31 18:53:10 -06:00
Merge branch 'master' into neilalexander/inputtweaks
This commit is contained in:
commit
f3ee072660
|
|
@ -368,6 +368,7 @@ logging:
|
||||||
- type: std
|
- type: std
|
||||||
level: info
|
level: info
|
||||||
- type: file
|
- type: file
|
||||||
|
# The logging level, must be one of debug, info, warn, error, fatal, panic.
|
||||||
level: info
|
level: info
|
||||||
params:
|
params:
|
||||||
path: ./logs
|
path: ./logs
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
#change IP to location of monolith server
|
||||||
|
upstream monolith{
|
||||||
|
server 127.0.0.1:8008;
|
||||||
|
}
|
||||||
server {
|
server {
|
||||||
listen 443 ssl; # IPv4
|
listen 443 ssl; # IPv4
|
||||||
listen [::]:443 ssl; # IPv6
|
listen [::]:443 ssl; # IPv6
|
||||||
|
|
@ -23,6 +27,6 @@ server {
|
||||||
}
|
}
|
||||||
|
|
||||||
location /_matrix {
|
location /_matrix {
|
||||||
proxy_pass http://monolith:8008;
|
proxy_pass http://monolith;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -588,3 +588,4 @@ User can invite remote user to room with version 9
|
||||||
Remote user can backfill in a room with version 9
|
Remote user can backfill in a room with version 9
|
||||||
Can reject invites over federation for rooms with version 9
|
Can reject invites over federation for rooms with version 9
|
||||||
Can receive redactions from regular users over federation in room version 9
|
Can receive redactions from regular users over federation in room version 9
|
||||||
|
Forward extremities remain so even after the next events are populated as outliers
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue