mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-07 05:51:17 +07:00
7f933a0355
Keep Gitea minimal.
36 lines
861 B
YAML
36 lines
861 B
YAML
gitea:
|
|
ingress:
|
|
enabled: true
|
|
className: nginx
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
hajimari.io/appName: Gitea
|
|
hajimari.io/icon: git
|
|
hosts:
|
|
- host: &host git.khuedoan.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: gitea-tls-certificate
|
|
hosts:
|
|
- *host
|
|
gitea:
|
|
admin:
|
|
existingSecret: gitea-admin-secret
|
|
config:
|
|
server:
|
|
LANDING_PAGE: explore
|
|
ROOT_URL: https://git.khuedoan.com
|
|
OFFLINE_MODE: true
|
|
repository:
|
|
DISABLED_REPO_UNITS: repo.wiki,repo.projects,repo.packages
|
|
DISABLE_STARS: true
|
|
DEFAULT_BRANCH: master
|
|
service.explore:
|
|
DISABLE_USERS_PAGE: true
|
|
actions:
|
|
ENABLED: false
|
|
webhook:
|
|
ALLOWED_HOST_LIST: private
|