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:
authorStefan Schweter <stefan@schweter.it>2015-05-27 15:06:40 +0300
committerStefan Schweter <stefan@schweter.it>2015-05-27 15:06:40 +0300
commit8313aa6da80ff79026b310181ad0a686f0a5b117 (patch)
tree2bce97a6aea188a9922ff11ac5b515398984895a /doc/workflow/timezone.md
parent701c2e9a3b4b60642eba0ee00c3e11e1e43fb131 (diff)
Adds new section for changing time zone in GitLab configuration file. New section added for changing time zone in Omnibus installations.
Diffstat (limited to 'doc/workflow/timezone.md')
-rw-r--r--doc/workflow/timezone.md18
1 files changed, 15 insertions, 3 deletions
diff --git a/doc/workflow/timezone.md b/doc/workflow/timezone.md
index 8540ccfcabb..7e08c0e51ac 100644
--- a/doc/workflow/timezone.md
+++ b/doc/workflow/timezone.md
@@ -1,10 +1,22 @@
# Changing your time zone
-GitLab defaults its time zone to UTC. It has a global timezone configuration parameter in /etc/gitlab/gitlab.rb
+The global time zone configuration parameter can be changed in `config/gitlab.yml`:
+```
+ # time_zone: 'UTC'
+```
+
+Uncomment and customize if you want to change the default time zone of GitLab application.
+
+To see all available time zones, run `bundle exec rake time:zones:all`.
+
+
+## Changing time zone in omnibus installations
+
+GitLab defaults its time zone to UTC. It has a global timezone configuration parameter in `/etc/gitlab/gitlab.rb`.
To update, add the time zone that best applies to your location. Here are two examples:
```
-gitlab_rails['time_zone'] = 'America/New_York'
+gitlab_rails['time_zone'] = 'America/New_York'
```
or
```
@@ -15,4 +27,4 @@ After you added this field, reconfigure and restart:
```
gitlab-ctl reconfigure
gitlab-ctl restart
-``` \ No newline at end of file
+```