Skip to content

Instantly share code, notes, and snippets.

View ashokveerasamy's full-sized avatar

Ashok Veerasamy ashokveerasamy

View GitHub Profile
@ashokveerasamy
ashokveerasamy / wordpress.sh
Created May 28, 2023 06:46 — forked from amcginlay/wordpress.sh
AWS EC2 Wordpress
#!/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