Added example defaults file and appropriate documentation.

This commit is contained in:
Rovanion Luckey
2013-12-09 14:05:50 +01:00
parent dbf8ae7301
commit 29cb573b6c
3 changed files with 36 additions and 14 deletions
+14
View File
@@ -0,0 +1,14 @@
# 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"