Tuesday October 12, 2021; 11:43 AM EDT
- Some Drummer users are trying to get drummerCms to work on their servers, so they can publish to a custom domain. To do so you have to set up your system so that Node apps can read and write to S3 via Amazon's API. #
- I've been telling people to follow Amazons directions. I just reviewed them and they seem pretty straightforward. But they could be a tiny bit easier, so I wrote these instructions. #
- At the command line type this:#
- cd ~/.aws#
- nano credentials#
- Paste this text, replacing the dummy values with the ones from your AWS account:#
- [default]
aws_access_key_id=tz4nhbttfvll76gb9ej7
aws_secret_access_key=cedx5jixadnwca1e3fnopkg8ji6cvynx4nlhgpy8#
- Type this:#
- Control-O#
- Return#
- Control-X#
- Make sure the file was correctly created.#
- Having done all that, the app that tried to write to S3 should now be able to do it without error. #