-
-
Save ashokveerasamy/2dea24c0290922f212f995295c148dbd to your computer and use it in GitHub Desktop.
AWS EC2 Wordpress
This file contains hidden or 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment