freebsd-ports/devel/gitaly/files/patch-config.toml.example
Torsten Zuehlsdorff abebdb0636 devel/gitaly: Update config example
Add more sections for referenced software using
there correct paths.

Submitted by: Matthias Fechner <idefix@fechner.net>
2017-11-28 16:06:22 +00:00

35 lines
965 B
Text

--- config.toml.example.orig 2017-10-28 10:50:48.245547000 +0200
+++ config.toml.example 2017-10-28 10:56:00.467310000 +0200
@@ -1,6 +1,6 @@
# Example Gitaly configuration file
-socket_path = "/home/git/gitlab/tmp/sockets/private/gitaly.socket"
+socket_path = "/usr/local/www/gitlab/tmp/sockets/private/gitaly.socket"
# # Optional: listen on a TCP socket. This is insecure (no authentication)
# listen_addr = "localhost:9999"
@@ -10,14 +10,20 @@
# prometheus_listen_addr = "localhost:9236"
#
-# # Git executable settings
-# [git]
-# bin_path = "/usr/bin/git"
+# Git executable settings
+[git]
+bin_path = "/usr/local/bin/git"
[[storage]]
name = "default"
-path = "/home/git/repositories"
+path = "/usr/home/git/repositories"
+[gitaly-ruby]
+dir = "/usr/local/bin/ruby"
+
+[gitlab-shell]
+dir = "/usr/local/share/gitlab-shell/bin/gitlab-shell"
+
# # You can optionally configure more storages for this Gitaly instance to serve up
#
# [[storage]]