gitlab-org--gitlab-foss/doc/workflow/timezone.md
Fernando José Brustolin cefefe522a
Update doc/workflow/timezone.md
Originally submitted at
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/5286.

Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-08-29 17:35:41 +02:00

31 lines
839 B
Markdown

# Changing your time zone
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`.
With Omnibus installations, run `gitlab-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'
```
or
```
gitlab_rails['time_zone'] = 'Europe/Brussels'
```
After you added this field, reconfigure and restart:
```
gitlab-ctl reconfigure
gitlab-ctl restart
```