updated gitea state

This commit is contained in:
Paul 2021-08-03 17:44:16 +02:00
parent 23ca008ca0
commit 83df0df5b9
2 changed files with 10 additions and 1 deletions

View File

@ -28,6 +28,10 @@ gitea:
lfs_jwt_secret: createYourOwnJWTSecret
enable_gzip: false
landing_page: home
cache:
enabled: true
adapter: redis
host: redis://127.0.0.1:6379/0?pool_size=100&idle_timeout=180s
mailer:
enable: true
hostname: mail.example.com

View File

@ -42,6 +42,11 @@ LFS_JWT_SECRET = {{ gitea.server.lfs_jwt_secret }}
ENABLE_GZIP = {{ gitea.server.enable_gzip }}
LANDING_PAGE = {{ gitea.server.landing_page }}
[cache]
ENABLED = {{ gitea.cache.enabled }}
ADAPTER = {{ gitea.cache.adapter }}
HOST = {{ gitea.cache.host }}
[mailer]
ENABLED = {{ gitea.mailer.enable }}
HELO_HOSTNAME = {{ gitea.mailer.hostname }}