Ansible construction script of mastodon instance
- Amazon Linux 2018.03.0
- Amazon Lightsail ready
- 2.5.0 ready
sudo su -
yum install -y git
pip install ansible
cd /usr/local/src
git clone https://github.com/nacika-ins/ansible-mastodon-amznlinux.git; cd ansible-mastodon-amznlinux
cp group_vars/production.yml.sample group_vars/production.yml
- please rewrite group_vars file.
vim group_vars/production.yml
- let try
ansible-playbook -i localhost localhost.yml -vv
- start supervisord
nohup supervisord -n -c /etc/supervisord.conf >/dev/null 2>&1 &
If it does not work please run Ansible several times.
{
"Version":"2012-10-17",
"Statement":[
{
"Effect":"Allow",
"Action":[
"s3:ListAllMyBuckets"
],
"Resource":"arn:aws:s3:::*"
},
{
"Effect":"Allow",
"Action":[
"s3:ListBucket",
"s3:GetBucketLocation"
],
"Resource":"arn:aws:s3:::examplebucket"
},
{
"Effect":"Allow",
"Action":[
"s3:PutObject",
"s3:PutObjectAcl",
"s3:GetObject",
"s3:GetObjectAcl",
"s3:DeleteObject"
],
"Resource":"arn:aws:s3:::examplebucket/*"
}
]
}