Skip to content

Commit

Permalink
fix(config): reword key path
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed May 2, 2023
1 parent 41893d2 commit fef6f9b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions server/config/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ ssh:
# This is the address will be used to clone repositories.
public_url: "{{ .SSH.PublicURL }}"
# The relative path to the SSH server's private key.
# The path to the SSH server's private key.
key_path: "{{ .SSH.KeyPath }}"
# The relative path to the SSH server's client private key.
# The path to the SSH server's client private key.
# This key will be used to authenticate the server to make git requests to
# ssh remotes.
client_key_path: "{{ .SSH.ClientKeyPath }}"
# The relative path to the SSH server's internal api private key.
# The path to the SSH server's internal api private key.
internal_key_path: "{{ .SSH.InternalKeyPath }}"
# The maximum number of seconds a connection can take.
Expand Down Expand Up @@ -67,6 +67,7 @@ http:
# The public URL of the HTTP server.
# This is the address will be used to clone repositories.
# Make sure to use https:// if you are using TLS.
public_url: "{{ .HTTP.PublicURL }}"
# The stats server configuration.
Expand Down

0 comments on commit fef6f9b

Please sign in to comment.