Changes between Version 17 and Version 18 of web_server_logs


Ignore:
Timestamp:
Jan 18, 2019, 5:04:03 PM (5 years ago)
Author:
Jamie McClelland
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • web_server_logs

    v17 v18  
    1515== Turn Off web logging ==
    1616
    17 You can turn off web logging on your site via the [https://members.mayfirst.org/cp Members Control panel] by clicking on the Web Configuration tab of your site and edit the Logging lines to read like the following:
     17You can turn off web logging on your site via the [https://members.mayfirst.org/cp Members Control panel] by clicking on the Web Configuration tab of your site.
    1818
    19 {{{
    20 CustomLog /dev/null combined
    21 ErrorLog /dev/null
    22 }}}
    23 
    24 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.
     19Click the "Show advanced settings" button and then find the field called " Logging". See it to: Disable Logging.
    2520
    2621=== Is that all? ===
     
    3530 * Download all social media icons to your site rather than have each visitor load them from Google, Facebook, etc. In addition, don't use javascript provided by these companies - instead, create your own links so people who choose to repost via Twitter or Facebook can click on a link that will open a new page in Twitter or Facebook - but people who choose not to click on those links do not have their privacy compromised.
    3631
    37 == Turn On web logging ==
    38 
    39 Web logging can be enabled in the Web Config section of the [https://members.mayfirst.org/cp Members Control Panel]. Ensure the following lines are present in your settings (Replace `MEMBER-NAME` with your member name and `DOMAIN-NAME` with your domain name):
    40 
    41 To track errors:
    42 
    43 {{{
    44 ErrorLog /home/members/MEMBER-NAME/sites/DOMAIN-NAME/logs/error.log
    45 }}}
    46 
    47 To track everyone who accesses our site:
    48 
    49 {{{
    50 CustomLog /home/members/MEMBER-NAME/sites/DOMAIN-NAME/logs/web.log custom
    51 }}}
    5232
    5333== Accessing your logs ==