| | 1 | = How do I turn off all web logging of my site? = |
| | 2 | |
| | 3 | Some members may want to protect the privacy of the people who view or contribute to their site by turning off web logging. |
| | 4 | |
| | 5 | Once #4793 is completed, you will be able to turn off web logging by click on the Web Configuration tab of your site and edit the Logging lines: |
| | 6 | |
| | 7 | {{{ |
| | 8 | CustomLog /dev/null combined |
| | 9 | ErrorLog /dev/null |
| | 10 | }}} |
| | 11 | |
| | 12 | Please note - just removing the Log lines will not disable logging, it will simply cause your logging to happen in the server-wide logs. You must configure your site to explicitly log to /dev/null. |
| | 13 | |
| | 14 | If you are using web application like Drupal or WordPress be sure to turn off logging in these applications as well. |
| | 15 | |
| | 16 | Also, be sure not to use google analytics, mollem, or any third party software that communicates with another web site. |
| | 17 | |