Compare commits

..

2 Commits

Author SHA1 Message Date
f
aa0de92e5b fix: change default session provider to db
this should help with folks having to log in again after restarts
2026-05-20 10:16:33 -03:00
f
b734c56e24 feat: configurable session provider 2026-05-15 16:39:04 -03:00
4 changed files with 6 additions and 2 deletions

View File

@ -38,6 +38,7 @@ GITEA_ENABLE_PUSH_CREATE_USER=false
GITEA_ENABLE_PUSH_CREATE_ORG=false
GITEA_LFS_START_SERVER=false
GITEA_MAX_CREATION_LIMIT=-1
GITEA_SESSION_PROVIDER=db
GITEA_REPO_UPLOAD_ENABLED=true
GITEA_REPO_UPLOAD_ALLOWED_TYPES=*/*

View File

@ -1,4 +1,4 @@
export APP_INI_VERSION=v25
export APP_INI_VERSION=v26
export DOCKER_SETUP_SH_VERSION=v1
export PG_BACKUP_VERSION=v1

View File

@ -126,3 +126,6 @@ MODE=console
LEVEL=WARN
STACKTRACE_LEVEL=None
ENABLE_XORM_LOG=false
[session]
PROVIDER = {{ env "GITEA_SESSION_PROVIDER" }}

View File

@ -10,7 +10,7 @@ services:
secrets:
- db_password
db:
image: postgres:18.4
image: postgres:15.13
deploy:
labels:
backupbot.backup.pre-hook: "/pg_backup.sh backup"