Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/support/init.d/gitlab.default.example')
-rwxr-xr-xlib/support/init.d/gitlab.default.example31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/support/init.d/gitlab.default.example b/lib/support/init.d/gitlab.default.example
deleted file mode 100755
index 9951bacedf5..00000000000
--- a/lib/support/init.d/gitlab.default.example
+++ /dev/null
@@ -1,31 +0,0 @@
-# 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 it's 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 it's 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"