Pages

Saturday, May 15, 2021

AWS - deploy apache web server

#!/bin/bash
# Install Apache Web Server and PHP
yum install -y httpd mysql amazon-linux-extras install -y php7.2
chkconfig httpd on
service httpd start

 

 

No comments:

Post a Comment