15 lines
520 B
Text
15 lines
520 B
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 it's components are installed.
|
||
|
# The default is "/home/$app_user/gitlab"
|
||
|
app_root="/home/$app_user/gitlab"
|