Fix default org and enable redis-based remote cache and live stream

This commit is contained in:
Alex D. 2022-04-19 07:13:39 +00:00
parent 8d3263e977
commit 42a081bb3b
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
2 changed files with 10 additions and 3 deletions

View File

@ -3,7 +3,7 @@
. ../APKBUILD-config.template
pkgver=2022.04.02.02
pkgver=2022.04.19.01
pkgrel=0
source="
secret
@ -26,5 +26,5 @@ package() {
sha512sums="
9a0dee0934034685c2aba7ebb21283ee73fd240c4cee2aa1cfcec66ba5afc3ed3759b2c79e1facba3e3e0a38fe75f11a7f382d968798ba212c36072238c59190 secret
828523446bdaaf4efe6db07d96ea7c80cea908ed41628d4b1e1353a0602ca62e0e0b4a434b65cca62b9431426c15135f5da691ee34a24939c7a7ca5a52421680 main.ini
c9214b04c982083ebbc56043708888aa41a3b4d2cd2fb8e7b9341ccfd9f1b5fd15d7d2cb9c829e66e9fd15dcd1ccf315ff8400a15aed1c201ff59844aa69f4cb main.ini
"

View File

@ -18,7 +18,8 @@ password = "POSTGRESQL_PASSWORD"
## Remote cache
[remote_cache]
type = 'database'
type = 'redis'
connstr = 'addr=redis.routinginfo.internal:7551,db=9'
## Security
[security]
@ -28,6 +29,7 @@ cookie_samesite = 'strict'
## Users
[users]
allow_sign_up = 'false'
auto_assign_org_id = 2
## Anonymous auth
[auth]
@ -83,3 +85,8 @@ enabled = false
[unified_alerting]
enabled = true
[live]
max_connections = 200
ha_engine = 'redis'
ha_engine_address = redis.routinginfo.internal:7551