From 0d4b27e4ff8fa10eed4c838cc8d7a5bbb42dd9c3 Mon Sep 17 00:00:00 2001 From: Jair Gonzalez Date: Fri, 26 Jan 2018 18:40:12 -0600 Subject: [PATCH] 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 --- .../tutorials/web-server-install/web-server-install.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/clear-linux/tutorials/web-server-install/web-server-install.rst b/source/clear-linux/tutorials/web-server-install/web-server-install.rst index b382d469..52e7af94 100644 --- a/source/clear-linux/tutorials/web-server-install/web-server-install.rst +++ b/source/clear-linux/tutorials/web-server-install/web-server-install.rst @@ -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 # - + AllowOverride none Require all granted