Tips for deploying CodeIgniter to AWS: disable pconnect when using RDS to avoid exceeding connection limits, note that RDS timezone defaults to UTC, and considerations when using a Load Balancer.
- If you use Amazon RDS, especially micro plan,
remember to set $config['pconnect'] = FALSE in application/config/database.php.
Because RDS has Max_connection limits. - If you use RDS, remeber that the system timezone in RDS is +0 timezone.
In your application, you should care about this thing. - If you will use loadbalancer, remember to ….(???)