Last active
February 27, 2024 12:07
-
-
Save amcginlay/f054a1867ce598979785b651c4733b0c to your computer and use it in GitHub Desktop.
AWS EC2 Wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
yum update -y | |
yum install httpd php php-mysql -y | |
cd /var/www/html | |
echo "healthy" > healthy.html | |
wget https://wordpress.org/wordpress-5.1.1.tar.gz | |
tar -xzf wordpress-5.1.1.tar.gz | |
cp -r wordpress/* /var/www/html/ | |
rm -rf wordpress | |
rm -rf wordpress-5.1.1.tar.gz | |
chmod -R 755 wp-content | |
chown -R apache:apache wp-content | |
wget https://s3.amazonaws.com/bucketforwordpresslab-donotdelete/htaccess.txt | |
mv htaccess.txt .htaccess | |
chkconfig httpd on | |
service httpd start |
I can see that the S3 bucket (bucketforwordpresslab-donotdelete
) was either deleted or repermissioned. It was never mine in the first place so I can't be sure what was in it. It's referenced by many articles online so it's likely others out there are also seeking a solution.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
did you find any solution ? I am getting same error