mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-03-03 08:53:10 -06:00
Increase connection counts for roomserver and sync API in defaults
This commit is contained in:
parent
df9dec4e56
commit
c733d9a74a
|
|
@ -12,7 +12,7 @@ func (c *RoomServer) Defaults(opts DefaultOpts) {
|
|||
if !opts.Monolithic {
|
||||
c.InternalAPI.Listen = "http://localhost:7770"
|
||||
c.InternalAPI.Connect = "http://localhost:7770"
|
||||
c.Database.Defaults(10)
|
||||
c.Database.Defaults(20)
|
||||
}
|
||||
if opts.Generate {
|
||||
if !opts.Monolithic {
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ func (c *SyncAPI) Defaults(opts DefaultOpts) {
|
|||
c.InternalAPI.Listen = "http://localhost:7773"
|
||||
c.InternalAPI.Connect = "http://localhost:7773"
|
||||
c.ExternalAPI.Listen = "http://localhost:8073"
|
||||
c.Database.Defaults(10)
|
||||
c.Database.Defaults(20)
|
||||
}
|
||||
if opts.Generate {
|
||||
if !opts.Monolithic {
|
||||
|
|
|
|||
Loading…
Reference in a new issue