We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8753f37 commit b8328c5Copy full SHA for b8328c5
cookbook/configuration/web_server_configuration.rst
@@ -48,10 +48,13 @@ are:
48
Allow from All
49
</Directory>
50
51
- ErrorLog ${APACHE_LOG_DIR}/project_error.log
52
- CustomLog ${APACHE_LOG_DIR}/project_access.log combined
+ ErrorLog /var/log/apache2/project_error.log
+ CustomLog /var/log/apache2/project_access.log combined
53
</VirtualHost>
54
-
+.. note::
55
+ You probably want to use ``${APACHE_LOG_DIR}/`` instead of ``/var/log/apache2/``
56
+ for the logging-paths, if your system supports the ``APACHE_LOG_DIR`` variable.
57
+
58
.. note::
59
60
For performance reasons, you will probably want to set
0 commit comments