mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 05:06:46 +10:00
15 lines
520 B
Plaintext
Executable File
15 lines
520 B
Plaintext
Executable File
# 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"
|