Skip to content
Advertisement

Tag: amazon-web-services

AWS SES Email not verified with Laravel

I have this mail test class to send email to user by SES: by tinker: Even I opened case and convert from sandbox to production: My .env: Am I missing something? The error:: Answer Moving from Sandbox to Production only eliminates the requirement to verify the recipient addresses , however, you must need to verify a From/Envelope-Sender/Return Path address. This

Laravel routes causing 404 Error on live server

I have a laravel app developed on my localhost and working perfectly. I am trying to deploy it onto an AWS Lightsail instance using nginx on Ubuntu 20.04. I have uploaded my laravel app and changed the nginx root directory to laravelapp/public. The main index page (landing page) is working fine but none of my routes are working (i.e. /login,

403 on ChangeResourceRecordSets despite the role having route53Domains:* in the policy

The error My role Answer Your policy does not include route53:ChangeResourceRecordSets: Grants permission to create, update, or delete a record, which contains authoritative DNS information for a specified domain or subdomain name You only have “route53domains:*” permissions, but you don’t have route53:* nor route53:ChangeResourceRecordSets. ChangeResourceRecordSets is from route53, not from route53domains.

Advertisement