-
-
Save cristianorsolin/ea7cac0583e32dd3492545ceebde34c3 to your computer and use it in GitHub Desktop.
aws-lab-lamp-stack
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 -y install httpd php php-common php-mysql php-gd php-mbstring php-xml php-xmlrpc | |
chkconfig httpd on | |
/etc/init.d/httpd start | |
cd /tmp | |
wget http://wordpress.org/latest.tar.gz | |
tar xzvf latest.tar.gz | |
mv wordpress/* /var/www/html/ | |
chown -R apache:apache /var/www/html/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment