User Tools

Site Tools


techstaff:personal_homepage

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
techstaff:personal_homepage [2014/12/17 16:52] – [2. Creating the directory that will host your site] kauffmantechstaff:personal_homepage [2016/03/29 09:53] kauffman
Line 44: Line 44:
 You can access your home page by using the following URL: https://people.cs.uchicago.edu/~username You can access your home page by using the following URL: https://people.cs.uchicago.edu/~username
 Please replace 'username' with your CNETID. Please replace 'username' with your CNETID.
 +
 +====== Password protecting a directory ======
 +Please be aware that this not provide any real security and only keeps honest people honest. People viewing your page with a web browser will be required to provide a password. However, since files in your ~/html directory must be world readable to be seen by the server, anyone can view your html files directly.
 +
 +Create new password file (with a user):
 +<code>htpasswd -c .http_passwd new_user</code>
 +  - The password file should not be in your html directory, but it must be world readable.
 +  - To add more users remove ''%%-c%%'' from the above command.
 +<code>htpasswd .http_passwd user2</code>
 +Put a file .htaccess in each html directory to be restricted. Start with this template:
 +<code>
 +AuthUserFile /home/mokwa/html/.http_passwd
 +AuthName Projec
 +AuthType Basic
 +require valid-user
 +</code>
 +Now set the permissions on the .htaccess and .http_passwd file.
 +<code>
 +chmod 644 .htaccess .http_passwd
 +</code>
 +
/var/lib/dokuwiki/data/pages/techstaff/personal_homepage.txt · Last modified: 2021/09/22 16:16 by ctopper

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki