Standardize config.

This commit is contained in:
2026-05-23 19:51:33 +00:00
parent e2e3f730a5
commit 6b5325c6f3
87 changed files with 426 additions and 531 deletions

View File

@@ -8,7 +8,7 @@ data:
public_baseurl: https://{{ .domain }}
listeners:
- port: {{ .port }}
- port: 8008
tls: false
type: http
x_forwarded: true
@@ -20,17 +20,17 @@ data:
database:
name: psycopg2
args:
user: {{ .dbUsername }}
user: {{ .db.user }}
password: ${DB_PASSWORD}
database: {{ .dbName }}
host: {{ .dbHostname }}
database: {{ .db.name }}
host: {{ .db.host }}
port: 5432
cp_min: 5
cp_max: 10
redis:
enabled: true
host: {{ .redisHostname }}
host: {{ .redis.host }}
port: 6379
password: ${REDIS_PASSWORD}