I am new to this sort of course.
I am trying to configure PHP and Apache on a new Amazon EC2 AMI. This is a very lightweight server so the Micro instance fits the bill.
I just need Apache PHP
I ran
sudo yum install apache2
sudo yum install php
I copied info.php to /var/www/html
info.php only contains
<? phpinfo(); ?>
when I browse to http://www.example.com/info.php Apache serves info.php but it does not render it. I look like apache is not configured to handle php files. What step or steps am I missing?