Skip to content

Instantly share code, notes, and snippets.

@kevinah95
Last active September 26, 2023 22:41
Show Gist options
  • Save kevinah95/28bc0371a161ded19202cc4988970311 to your computer and use it in GitHub Desktop.
Save kevinah95/28bc0371a161ded19202cc4988970311 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Install Apache Web Server and PHP
dnf install -y httpd wget php mariadb105-server
# Download Lab files
wget https://aws-tc-largeobjects.s3.us-west-2.amazonaws.com/CUR-TF-100-ACCLFO-2/2-lab2-vpc/s3/lab-app.zip
unzip lab-app.zip -d /var/www/html/
# Turn on web server
chkconfig httpd on
service httpd start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment