Skip to content

Commit

Permalink
APACHE_LOG_DIR note added
Browse files Browse the repository at this point in the history
Added a note, that for systems, which support the APACHE_LOG_DIR env, the user can use it for the logging-path.
  • Loading branch information
noppelmax authored and weaverryan committed Oct 19, 2014
1 parent 8753f37 commit b8328c5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions cookbook/configuration/web_server_configuration.rst
Expand Up @@ -48,10 +48,13 @@ are:
Allow from All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/project_error.log
CustomLog ${APACHE_LOG_DIR}/project_access.log combined
ErrorLog /var/log/apache2/project_error.log
CustomLog /var/log/apache2/project_access.log combined
</VirtualHost>
.. note::
You probably want to use ``${APACHE_LOG_DIR}/`` instead of ``/var/log/apache2/``
for the logging-paths, if your system supports the ``APACHE_LOG_DIR`` variable.

.. note::

For performance reasons, you will probably want to set
Expand Down

0 comments on commit b8328c5

Please sign in to comment.