Merge branch 'gitea-rework'

master
Jef Roosens 2021-12-24 17:37:29 +01:00
commit 8056f92a1f
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
2 changed files with 148 additions and 7 deletions

115
configs/gitea.ini 100644
View File

@ -0,0 +1,115 @@
APP_NAME = The Rusty Bever
RUN_MODE = prod
RUN_USER = git
[repository]
ROOT = /data/git/repositories
; Makes public the default option when creating a repo
DEFAULT_PRIVATE = public
; Disables releases, projects & wiki by default for new repos (but can be enabled when needed)
DEFAULT_REPO_UNITS = repo.code,repo.issues,repo.pulls
; Might as well be compatible with
DEFAULT_BRANCH = main
[repository.pull-request]
WORK_IN_PROGRESS_PREFIXES = WIP:,[WIP]:,Draft:,[Draft]:
[repository.local]
LOCAL_COPY_PATH = /data/gitea/tmp/local-repo
[repository.upload]
TEMP_PATH = /data/gitea/uploads
[ui]
; Always show the full name of a user when possible
DEFAULT_SHOW_FULL_NAME = true
[server]
APP_DATA_PATH = /data/gitea
DOMAIN = git.rustybever.be
SSH_DOMAIN = git.rustybever.be
HTTP_PORT = 3000
ROOT_URL = https://git.rustybever.be/
DISABLE_SSH = false
SSH_PORT = 22
SSH_LISTEN_PORT = 22
LFS_START_SERVER = true
LFS_CONTENT_PATH = /data/git/lfs
OFFLINE_MODE = false
[database]
PATH = /data/gitea/gitea.db
DB_TYPE = postgres
HOST = db:5432
NAME = gitea
USER = gitea
PASSWD = gitea
LOG_SQL = false
SCHEMA =
SSL_MODE = disable
CHARSET = utf8
[indexer]
ISSUE_INDEXER_PATH = /data/gitea/indexers/issues.bleve
[session]
PROVIDER_CONFIG = /data/gitea/sessions
PROVIDER = file
[picture]
AVATAR_UPLOAD_PATH = /data/gitea/avatars
REPOSITORY_AVATAR_UPLOAD_PATH = /data/gitea/repo-avatars
DISABLE_GRAVATAR = false
ENABLE_FEDERATED_AVATAR = true
[attachment]
PATH = /data/gitea/attachments
[log]
MODE = console
LEVEL = info
REDIRECT_MACARON_LOG = true
MACARON = console
ROUTER = console
ROOT_PATH = /data/gitea/log
[security]
INSTALL_LOCK = true
MIN_PASSWORD_LENGTH = 12
PASSWORD_COMPLEXITY = lower,upper,digit
[service]
DISABLE_REGISTRATION = true
REQUIRE_SIGNIN_VIEW = false
REGISTER_EMAIL_CONFIRM = false
ENABLE_NOTIFY_MAIL = false
ALLOW_ONLY_EXTERNAL_REGISTRATION = false
ENABLE_CAPTCHA = false
DEFAULT_KEEP_EMAIL_PRIVATE = false
DEFAULT_ALLOW_CREATE_ORGANIZATION = true
DEFAULT_ENABLE_TIMETRACKING = true
NO_REPLY_ADDRESS = noreply.localhost
[mailer]
ENABLED = false
[openid]
ENABLE_OPENID_SIGNIN = true
ENABLE_OPENID_SIGNUP = false
[other]
SHOW_FOOTER_VERSION = false
SHOW_FOOTER_TEMPLATE_LOAD_TIME = false

View File

@ -12,12 +12,15 @@ services:
constraints: constraints:
- 'node.labels.class==gitea' - 'node.labels.class==gitea'
labels: labels:
- 'traefik.enable=true' - 'traefik.enable=true'
- 'traefik.http.routers.gitea.rule=Host(`git.rustybever.be`)' - 'traefik.http.routers.gitea.rule=Host(`git.rustybever.be`)'
- 'traefik.http.routers.gitea.tls=true' - 'traefik.http.routers.gitea.tls=true'
- 'traefik.http.routers.gitea.tls.certresolver=letsEncrypt' - 'traefik.http.routers.gitea.tls.certresolver=letsEncrypt'
- 'traefik.http.services.gitea.loadbalancer.server.port=3000' - 'traefik.http.services.gitea.loadbalancer.server.port=3000'
configs:
- source: gitea_v1
target: /data/gitea/conf/app.ini
environment: environment:
- 'DB_TYPE=postgres' - 'DB_TYPE=postgres'
- 'DB_HOST=db:5432' - 'DB_HOST=db:5432'
@ -26,6 +29,10 @@ services:
- 'DB_PASSWD=gitea' - 'DB_PASSWD=gitea'
- 'LFS_START_SERVER=true' - 'LFS_START_SERVER=true'
- 'DISABLE_REGISTRATION=true' - 'DISABLE_REGISTRATION=true'
- 'GITEA__server__LFS_JWT_SECRET_FILE=/run/secrets/gitea_lfs_jwt_secret'
- 'GITEA__security__SECRET_KEY_FILE=/run/secrets/gitea_secret_key'
- 'GITEA__security__INTERNAL_TOKEN_FILE=/run/secrets/gitea_internal_token'
- 'GITEA__oauth2__JWT_SECRET_FILE=/run/secrets/gitea_jwt_secret'
networks: networks:
- 'default' - 'default'
- 'public' - 'public'
@ -37,6 +44,11 @@ services:
- 'lfs:/data/git/lfs' - 'lfs:/data/git/lfs'
- '/etc/timezone:/etc/timezone:ro' - '/etc/timezone:/etc/timezone:ro'
- '/etc/localtime:/etc/localtime:ro' - '/etc/localtime:/etc/localtime:ro'
secrets:
- gitea_internal_token
- gitea_jwt_secret
- gitea_lfs_jwt_secret
- gitea_secret_key
db: db:
image: 'postgres:14.1-alpine' image: 'postgres:14.1-alpine'
@ -62,10 +74,24 @@ services:
volumes: volumes:
- 'db-data:/var/lib/postgresql/data' - 'db-data:/var/lib/postgresql/data'
configs:
gitea_v1:
external: true
networks: networks:
public: public:
external: true external: true
secrets:
gitea_internal_token:
external: true
gitea_jwt_secret:
external: true
gitea_lfs_jwt_secret:
external: true
gitea_secret_key:
external: true
volumes: volumes:
data: data:
db-data: db-data: