gitlab-org--gitlab-foss/doc/workflow/timezone.md

18 lines
445 B
Markdown
Raw Normal View History

# Changing your time zone
2015-05-25 19:56:11 +00:00
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
```