
Gerrit releases since a few years require HTTP basic authentication rather than Gertty's default of digest. Add it in the minimal config example since it's often overlooked by users and the number of Gerrit deployments where the default works is rapidly dwindling. Change-Id: I3138197991ae5f50f3ac956bf905ce5e01a50e7c
16 lines
475 B
YAML
16 lines
475 B
YAML
# This is an example ~/.config/gertty/gertty.yaml file with only the required
|
|
# settings.
|
|
|
|
# This file does not list all of the available options. For a full
|
|
# list with explanations, see the 'reference-gertty.yaml' file.
|
|
|
|
servers:
|
|
- name: CHANGEME
|
|
url: https://CHANGEME.example.org/
|
|
username: CHANGEME
|
|
# Set corresponding HTTP password in gerrit settings
|
|
password: CHANGEME
|
|
git-root: ~/git/
|
|
# Needed for Gerrit 2.16 and later
|
|
auth-type: basic
|