azureredmine

Configure the default timezone

  • Navigate to the Redmine installation directory:

      $ cd /opt/bitnami/redmine
    
  • Check all the available timezones by executing these commands:

      $ bundle exec rake time:zones:all
    
  • Once you decide on the correct one, edit the config/application.rb file and substitute the line

      config.active_record.default_timezone = :local
    

    with

      config.active_record.default_timezone = 'your_timezone'
    

    Note that the single quotes around the timezone value are necessary.

  • Restart services.

      $ sudo /opt/bitnami/ctlscript.sh restart apache
    
Last modification May 22, 2023