Change curly quotes for straight quotes

In the "Change the Default Configuration and Data
Directory" section, the curly quotation marks in the
httpd.conf example cause service start errors when
the text is copied and pasted over directly to the new
httpd.conf file, as part of following the section's
steps.

This commit replaces the curly double quotes with straight
double quotes to correct the wrong behavior.

Signed-off-by: Jair Gonzalez <jair.de.jesus.gonzalez.plascencia@intel.com>
This commit is contained in:
Jair Gonzalez
2018-01-29 12:28:36 -06:00
parent 89a38c7d62
commit 0d4b27e4ff
@@ -105,12 +105,12 @@ Using your favorite editor, copy the content listed below into the new file
#
# Set a new location for DocumentRoot
#
DocumentRoot /var/www/html
DocumentRoot "/var/www/html"
#
# Relax access to content within /var/www/html for this tutorial
#
<Directory /var/www/html>
<Directory "/var/www/html">
AllowOverride none
Require all granted
</Directory>