Skip to content

Commit

Permalink
feature #5020 Added a commented config useful when you use symlinks (…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
weaverryan committed Mar 14, 2015
2 parents 66cf990 + 81b6a0e commit 65a33c0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions cookbook/configuration/web_server_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ are:
Allow from All
</Directory>
# uncomment the following lines if you install assets as symlinks
# or run into problems when compiling LESS/Sass/CoffeScript assets
# <Directory /var/www/project>
# Option FollowSymlinks
# </Directory>
ErrorLog /var/log/apache2/project_error.log
CustomLog /var/log/apache2/project_access.log combined
</VirtualHost>
Expand Down Expand Up @@ -151,6 +157,12 @@ directive to pass requests for PHP files to PHP FPM:
Require all granted
</Directory>
# uncomment the following lines if you install assets as symlinks
# or run into problems when compiling LESS/Sass/CoffeScript assets
# <Directory /var/www/project>
# Option FollowSymlinks
# </Directory>
ErrorLog /var/log/apache2/project_error.log
CustomLog /var/log/apache2/project_access.log combined
</VirtualHost>
Expand Down Expand Up @@ -181,6 +193,12 @@ should look something like this:
Allow from all
</Directory>
# uncomment the following lines if you install assets as symlinks
# or run into problems when compiling LESS/Sass/CoffeScript assets
# <Directory /var/www/project>
# Option FollowSymlinks
# </Directory>
ErrorLog /var/log/apache2/project_error.log
CustomLog /var/log/apache2/project_access.log combined
</VirtualHost>
Expand Down

0 comments on commit 65a33c0

Please sign in to comment.