diff --git a/HowtoGitea.md b/HowtoGitea.md index 8ce516ba..52e054b6 100644 --- a/HowtoGitea.md +++ b/HowtoGitea.md @@ -84,7 +84,7 @@ A noter qu'on ne laisse les droits d'écritures uniquement pour l'installation. # chmod g+rw /etc/gitea/git.ini ~~~ -On ajoute aussi quelques réglages initiaux, pour que l'interface de gitea soit directement fonctionnelle : +On ajoute aussi quelques réglages initiaux, pour que l'interface de gitea soit directement fonctionnelle (avec des logs en cas de soucis) : ~~~ # cat /etc/gitea/git.ini @@ -100,6 +100,18 @@ UNIX_SOCKET_PERMISSION = 660 OFFLINE_MODE = true SSH_DOMAIN = gitea.example.org ROOT_URL = https://gitea.example.org/ + +[repository] +ROOT = /home/git/repositories + +[log] +ROOT_PATH = /home/git/log/ +MODE = file +LEVEL = Info + +[i18n] +LANGS = fr-FR, en-US +NAMES = Français,English ~~~