Last active
September 26, 2023 22:41
-
-
Save kevinah95/28bc0371a161ded19202cc4988970311 to your computer and use it in GitHub Desktop.
This file contains 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 | |
# 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