debian-mirror-gitlab/doc/workflow/timezone.md

38 lines
1.3 KiB
Markdown
Raw Normal View History

2015-09-11 14:41:01 +05:30
# Changing your time zone
The global time zone configuration parameter can be changed in `config/gitlab.yml`:
2019-09-04 21:01:54 +05:30
2019-09-30 21:07:59 +05:30
```text
2019-09-04 21:01:54 +05:30
# time_zone: 'UTC'
2015-09-11 14:41:01 +05:30
```
2019-09-04 21:01:54 +05:30
Uncomment and customize if you want to change the default time zone of the GitLab application.
## Viewing available timezones
2015-09-11 14:41:01 +05:30
To see all available time zones, run `bundle exec rake time:zones:all`.
2019-09-04 21:01:54 +05:30
For Omnibus installations, run `gitlab-rake time:zones:all`.
NOTE: **Note:**
2019-12-04 20:38:33 +05:30
Currently, this rake task does not list timezones in TZInfo format required by GitLab Omnibus during a reconfigure: [#58672](https://gitlab.com/gitlab-org/gitlab-foss/issues/58672).
2015-09-11 14:41:01 +05:30
2019-12-04 20:38:33 +05:30
## Changing time zone in Omnibus installations
2015-09-11 14:41:01 +05:30
GitLab defaults its time zone to UTC. It has a global timezone configuration parameter in `/etc/gitlab/gitlab.rb`.
2019-09-04 21:01:54 +05:30
To obtain a list of timezones, log in to your GitLab application server and run a command that generates a list of timezones in TZInfo format for the server. For example, install `timedatectl` and run `timedatectl list-timezones`.
To update, add the timezone that best applies to your location. For example:
2019-09-30 21:07:59 +05:30
```ruby
2015-09-11 14:41:01 +05:30
gitlab_rails['time_zone'] = 'America/New_York'
```
2019-09-04 21:01:54 +05:30
After adding the configuration parameter, reconfigure and restart your GitLab instance:
2019-09-30 21:07:59 +05:30
```sh
2015-09-11 14:41:01 +05:30
gitlab-ctl reconfigure
gitlab-ctl restart
```