Difference between revisions of "Check it out here!"

From TheBestLinux.com
Jump to navigation Jump to search
 
Line 9: Line 9:
  
 
== '''Javascript''' ==
 
== '''Javascript''' ==
 +
 +
= '''Apache Web Server''' =
 +
== '''Password Protected Web Pages''' ==
 +
*  Password Generation Options
 +
 +
Using crypt encryption:
 +
htpasswd -bd .htpasswd testuser Pass123
 +
 +
Using MD5 encryption:
 +
htpasswd -bm .htpasswd testuser Pass123
 +
 +
Using SHA encryption:
 +
htpasswd -bs .htpasswd testuser Pass123

Latest revision as of 18:24, 23 June 2023

Website Programming - HTML, CSS & Javascript

HTML

CSS

Javascript

Apache Web Server

Password Protected Web Pages

  • Password Generation Options

Using crypt encryption: htpasswd -bd .htpasswd testuser Pass123

Using MD5 encryption: htpasswd -bm .htpasswd testuser Pass123

Using SHA encryption: htpasswd -bs .htpasswd testuser Pass123