You cannot change the server timezone however you can use the PHP function to set the timezone in your website.
--> Please set the function mentioned below in the php.ini file of your website.
<?php
date_default_timezone_set("Asia/India");
echo date_default_timezone_get();
?>