# Example Gitaly configuration file # Documentation lives at https://docs.gitlab.com/ee/administration/gitaly/ and # https://docs.gitlab.com/ee//administration/gitaly/reference socket_path = "{{ gitaly.socket }}" # The directory where Gitaly's executables are stored bin_dir = "{{ gitaly.location }}" # # Optional: listen on a TCP socket. This is insecure (no authentication) # listen_addr = "localhost:9999" # tls_listen_addr = "localhost:8888 # # Optional: export metrics via Prometheus # prometheus_listen_addr = "localhost:9236" # # Git settings [git] bin_path = "{{ git }}" [[storage]] name = "default" path = "{{ gitlab.repositories }}" # # You can optionally configure more storages for this Gitaly instance to serve up # # [[storage]] # name = "other_storage" # path = "/mnt/other_storage/repositories" # # # You can optionally configure Gitaly to output JSON-formatted log messages to stdout # [logging] # format = "json" # # Additionally exceptions can be reported to Sentry # sentry_dsn = "https://<key>:<secret>@sentry.io/<project> # # You can optionally configure Gitaly to record histogram latencies on GRPC method calls # [prometheus] # grpc_latency_buckets = [0.001, 0.005, 0.025, 0.1, 0.5, 1.0, 10.0, 30.0, 60.0, 300.0, 1500.0] [gitaly-ruby] # The directory where gitaly-ruby is installed dir = "{{ gitaly.location }}/ruby" [gitlab-shell] # The directory where gitlab-shell is installed dir = "{{ gitlab_shell_work.location }}"