; Global maximum creation limit of repository per user, -1 means no limit
@ -70,7 +70,7 @@ SSH_PORT = 22
; Port number builtin SSH server listens on
SSH_LISTEN_PORT=%(SSH_PORT)s
; Root path of SSH directory, default is '~/.ssh', but you have to use '/home/git/.ssh'.
SSH_ROOT_PATH=
SSH_ROOT_PATH=
; Directory to create temporary files when test publick key using ssh-keygen,
; default is system temporary directory.
SSH_KEY_TEST_PATH=
@ -169,18 +169,18 @@ SUBJECT = %(APP_NAME)s
; Gmail: smtp.gmail.com:587
; QQ: smtp.qq.com:25
; Note, if the port ends with "465", SMTPS will be used. Using STARTTLS on port 587 is recommended per RFC 6409. If the server supports STARTTLS it will always be used.
HOST=
HOST=
; Disable HELO operation when hostname are different.
DISABLE_HELO=
DISABLE_HELO=
; Custom hostname for HELO operation, default is from system.
HELO_HOSTNAME=
HELO_HOSTNAME=
; Do not verify the certificate of the server. Only use this for self-signed certificates
SKIP_VERIFY=
SKIP_VERIFY=
; Use client certificate
USE_CERTIFICATE=false
CERT_FILE=custom/mailer/cert.pem
KEY_FILE=custom/mailer/key.pem
; Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format
; Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format
FROM=
; Mailer user name and password
USER=
@ -320,7 +320,7 @@ SCHEDULE = @every 24h
TIMEOUT=60s
; Arguments for command 'git fsck', e.g. "--unreachable --tags"
; see more on http://git-scm.com/docs/git-fsck/1.7.5
ARGS=
ARGS=
; Check repository statistics
[cron.check_repo_stats]
@ -328,10 +328,15 @@ RUN_AT_START = true
SCHEDULE=@every 24h
[git]
MAX_GIT_DIFF_LINES=10000
; Max number of lines allowed of a single file in diff view.
MAX_GIT_DIFF_LINES=500
; Max number of characters of a line allowed in diff view.
MAX_GIT_DIFF_LINE_CHARACTERS=500
; Max number of files shown in diff view.
MAX_GIT_DIFF_FILES=100
; Arguments for command 'git gc', e.g. "--aggressive --auto"
; see more on http://git-scm.com/docs/git-gc/1.7.5