diff --git a/cookbook/configuration/web_server_configuration.rst b/cookbook/configuration/web_server_configuration.rst
index f246e24ee26..59528aa83c6 100644
--- a/cookbook/configuration/web_server_configuration.rst
+++ b/cookbook/configuration/web_server_configuration.rst
@@ -48,6 +48,12 @@ are:
Allow from All
+ # uncomment the following lines if you install assets as symlinks
+ # or run into problems when compiling LESS/Sass/CoffeScript assets
+ #
+ # Option FollowSymlinks
+ #
+
ErrorLog /var/log/apache2/project_error.log
CustomLog /var/log/apache2/project_access.log combined
@@ -151,6 +157,12 @@ directive to pass requests for PHP files to PHP FPM:
Require all granted
+ # uncomment the following lines if you install assets as symlinks
+ # or run into problems when compiling LESS/Sass/CoffeScript assets
+ #
+ # Option FollowSymlinks
+ #
+
ErrorLog /var/log/apache2/project_error.log
CustomLog /var/log/apache2/project_access.log combined
@@ -181,6 +193,12 @@ should look something like this:
Allow from all
+ # uncomment the following lines if you install assets as symlinks
+ # or run into problems when compiling LESS/Sass/CoffeScript assets
+ #
+ # Option FollowSymlinks
+ #
+
ErrorLog /var/log/apache2/project_error.log
CustomLog /var/log/apache2/project_access.log combined