92 lines
4.1 KiB
Text
92 lines
4.1 KiB
Text
# Copy this lib/support/init.d/gitlab.default.example file to
|
|
# /etc/default/gitlab in order for it to apply to your system.
|
|
|
|
# RAILS_ENV defines the type of installation that is running.
|
|
# Normal values are "production", "test" and "development".
|
|
RAILS_ENV="production"
|
|
|
|
# app_user defines the user that GitLab is run as.
|
|
# The default is "git".
|
|
app_user="git"
|
|
|
|
# app_root defines the folder in which gitlab and its components are installed.
|
|
# The default is "/home/$app_user/gitlab"
|
|
app_root="/home/$app_user/gitlab"
|
|
|
|
# pid_path defines a folder in which the gitlab and its components place their pids.
|
|
# This variable is also used below to define the relevant pids for the gitlab components.
|
|
# The default is "$app_root/tmp/pids"
|
|
pid_path="$app_root/tmp/pids"
|
|
|
|
# socket_path defines the folder in which gitlab places the sockets
|
|
#The default is "$app_root/tmp/sockets"
|
|
socket_path="$app_root/tmp/sockets"
|
|
|
|
# web_server_pid_path defines the path in which to create the pid file fo the web_server
|
|
# The default is "$pid_path/unicorn.pid"
|
|
web_server_pid_path="$pid_path/unicorn.pid"
|
|
|
|
# sidekiq_pid_path defines the path in which to create the pid file for sidekiq
|
|
# The default is "$pid_path/sidekiq.pid"
|
|
sidekiq_pid_path="$pid_path/sidekiq.pid"
|
|
|
|
# The directory where the gitlab-workhorse binaries are. Usually
|
|
# /home/git/gitlab-workhorse .
|
|
gitlab_workhorse_dir=$(cd $app_root/../gitlab-workhorse && pwd)
|
|
gitlab_workhorse_pid_path="$pid_path/gitlab-workhorse.pid"
|
|
|
|
# The -listenXxx settings determine where gitlab-workhorse
|
|
# listens for connections from the web server. By default it listens to a
|
|
# socket. To listen on TCP connections (needed by Apache) change to:
|
|
# '-listenNetwork tcp -listenAddr 127.0.0.1:8181'
|
|
#
|
|
# The -authBackend setting tells gitlab-workhorse where it can reach Unicorn.
|
|
# For relative URL support change to:
|
|
# '-authBackend http://127.0.0.1/8080/gitlab'
|
|
# Read more in http://doc.gitlab.com/ce/install/relative_url.html
|
|
gitlab_workhorse_options="-listenUmask 0 -listenNetwork unix -listenAddr $socket_path/gitlab-workhorse.socket -authBackend http://127.0.0.1:8080 -authSocket $socket_path/gitlab.socket -documentRoot $app_root/public"
|
|
gitlab_workhorse_log="$app_root/log/gitlab-workhorse.log"
|
|
|
|
# The GitLab Pages Daemon needs either a separate IP address on which it will
|
|
# listen or use different ports than 80 or 443 that will be forwarded to GitLab
|
|
# Pages Daemon.
|
|
#
|
|
# To enable HTTP support for custom domains add the `-listen-http` directive
|
|
# in `gitlab_pages_options` below.
|
|
# The value of -listen-http must be set to `gitlab.yml > pages > external_http`
|
|
# as well. For example:
|
|
#
|
|
# -listen-http 1.1.1.1:80 -listen-http [2001::1]:80
|
|
#
|
|
# To enable HTTPS support for custom domains add the `-listen-https`,
|
|
# `-root-cert` and `-root-key` directives in `gitlab_pages_options` below.
|
|
# The value of -listen-https must be set to `gitlab.yml > pages > external_https`
|
|
# as well. For example:
|
|
#
|
|
# -listen-https 1.1.1.1:443 -listen-http [2001::1]:443 -root-cert /path/to/example.com.crt -root-key /path/to/example.com.key
|
|
#
|
|
# The -pages-domain must be specified the same as in `gitlab.yml > pages > host`.
|
|
# Set `gitlab_pages_enabled=true` if you want to enable the Pages feature.
|
|
gitlab_pages_enabled=false
|
|
gitlab_pages_options="-pages-domain example.com -pages-root $app_root/shared/pages -listen-proxy 127.0.0.1:8090"
|
|
gitlab_pages_log="$app_root/log/gitlab-pages.log"
|
|
|
|
# mail_room_enabled specifies whether mail_room, which is used to process incoming email, is enabled.
|
|
# This is required for the Reply by email feature.
|
|
# The default is "false"
|
|
mail_room_enabled=false
|
|
|
|
# mail_room_pid_path defines the path in which to create the pid file for mail_room
|
|
# The default is "$pid_path/mail_room.pid"
|
|
mail_room_pid_path="$pid_path/mail_room.pid"
|
|
|
|
# shell_path defines the path of shell for "$app_user" in case you are using
|
|
# shell other than "bash"
|
|
# The default is "/bin/bash"
|
|
shell_path="/bin/bash"
|
|
|
|
# This variable controls whether the init script starts/stops Gitaly
|
|
gitaly_enabled=true
|
|
gitaly_dir=$(cd $app_root/../gitaly 2> /dev/null && pwd)
|
|
gitaly_pid_path="$pid_path/gitaly.pid"
|
|
gitaly_log="$app_root/log/gitaly.log"
|