Thank you!
Since this web-server will, eventually, be serving more than one website, can you guide me on creating the necessary vhost entries? For example, should I create one file for all of the vhost entries, or is the CentOS, Apache default (/etc/httpd/conf/httpd.conf) where I should be creating the vhost entries?
Does this look correct?
<VirtualHost *:80>
DocumentRoot /var/www/html/
ServerName mynewwebsite.org
ServerAlias www.mynewwebsite.org
ErrorLog /var/log/httpd/mynewwebsite-error-log
CustomLog /var/log/httpd/mynewwebsite-log common
</VirtualHost>
Ed