Is there an exhaustive list of MySQL Time Zones?
It seems that the valid values for time_zone in MySQL settings are dependent on the host Operating Syst
time_zone
You can run this query to get a complete list of the timezones MySQL supports:
SELECT Name FROM mysql.time_zone_name ORDER BY Name
(Found on this page: https://www.plumislandmedia.net/mysql/time-zones-mysql/)