Skip to content

Commit 65a33c0

Browse files
committed
feature #5020 Added a commented config useful when you use symlinks (javiereguiluz)
This PR was merged into the 2.3 branch. Discussion ---------- Added a commented config useful when you use symlinks | Q | A | ------------- | --- | Doc fix? | no | New docs? | yes | Applies to | 2.3+ | Fixed tickets | #4232 Commits ------- 81b6a0e Added a commented config useful when you use symlinks
2 parents 66cf990 + 81b6a0e commit 65a33c0

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Diff for: cookbook/configuration/web_server_configuration.rst

+18
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ are:
4848
Allow from All
4949
</Directory>
5050
51+
# uncomment the following lines if you install assets as symlinks
52+
# or run into problems when compiling LESS/Sass/CoffeScript assets
53+
# <Directory /var/www/project>
54+
# Option FollowSymlinks
55+
# </Directory>
56+
5157
ErrorLog /var/log/apache2/project_error.log
5258
CustomLog /var/log/apache2/project_access.log combined
5359
</VirtualHost>
@@ -151,6 +157,12 @@ directive to pass requests for PHP files to PHP FPM:
151157
Require all granted
152158
</Directory>
153159
160+
# uncomment the following lines if you install assets as symlinks
161+
# or run into problems when compiling LESS/Sass/CoffeScript assets
162+
# <Directory /var/www/project>
163+
# Option FollowSymlinks
164+
# </Directory>
165+
154166
ErrorLog /var/log/apache2/project_error.log
155167
CustomLog /var/log/apache2/project_access.log combined
156168
</VirtualHost>
@@ -181,6 +193,12 @@ should look something like this:
181193
Allow from all
182194
</Directory>
183195
196+
# uncomment the following lines if you install assets as symlinks
197+
# or run into problems when compiling LESS/Sass/CoffeScript assets
198+
# <Directory /var/www/project>
199+
# Option FollowSymlinks
200+
# </Directory>
201+
184202
ErrorLog /var/log/apache2/project_error.log
185203
CustomLog /var/log/apache2/project_access.log combined
186204
</VirtualHost>

0 commit comments

Comments
 (0)