AWS Elastic Beanstalk configuration file for set up your app timezone (independent from EC2 region).
container_commands: | |
01changePHP: | |
command: sed -i '/PHP_DATE_TIMEZONE/ s/UTC/Europe\/Berlin/' /etc/php.d/environment.ini | |
01achangePHP: | |
command: sed -i '/aws.php_date_timezone/ s/UTC/Europe\/Berlin/' /etc/php.d/environment.ini | |
02change_AWS_PHP: | |
command: sed -i '/PHP_DATE_TIMEZONE/ s/UTC/Europe\/Berlin/' /etc/httpd/conf.d/aws_env.conf | |
03php_ini_set: | |
command: sed -i '/date.timezone/ s/UTC/Europe\/Berlin/' /etc/php.ini | |
commands: | |
01remove_local: | |
command: "rm -rf /etc/localtime" | |
02link_Buenos_Aires: | |
command: "ln -s /usr/share/zoneinfo/Europe/Berlin /etc/localtime" | |
03restart_http: | |
command: sudo service httpd restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment