Skip to content

Instantly share code, notes, and snippets.

View FtxDante's full-sized avatar
🤓

Paulo Sérgio FtxDante

🤓
  • Compass.uol
  • Fortaleza-CE, Brazil.
  • 06:29 (UTC -03:00)
View GitHub Profile
@loujaybee
loujaybee / createApacheUserData.sh
Created April 20, 2020 07:06
Basic Apache Web Server For Use In AWS User Data Script
#!/bin/bash
sudo su
yum -y install httpd
echo "<p> My Instance! </p>" >> /var/www/html/index.html
sudo systemctl enable httpd
sudo systemctl start httpd