You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A few questions about running a Laravel application:
Can the Laravel application connect to an external managed database such as on DigitalOcean (instead of RDS)
When I update my code base, can I get zero-downtime deployments (i.e. all existing requests are served by old code until they are served, but all new requests are done by new code base?
The text was updated successfully, but these errors were encountered:
Just to help you along a little - Yes to #1 (just think of RDS as an external service, just happens to be provided by AWS). If you're doing that, you may not actually need your lambda to sit inside a VPC either. If you do sit it inside a VPC for some reason though, it'll need external internet access (eg. a NAT Instance/Gateway).
Personally i've not had downtime with lambda deployments, but someone else more knowledgeable will have to comment on #2 there.
A few questions about running a Laravel application:
The text was updated successfully, but these errors were encountered: