WebSpace: Difference between revisions
Line 54: | Line 54: | ||
==Restricting Content based on IP address== | ==Restricting Content based on IP address== | ||
It is possible to have pages on your webspace only accessible to clients connecting from certain IP addresses. In order to accomplish this, cd in to the directory you wish to restrict, and edit your ''.htaccess'' or | It is possible to have pages on your webspace only accessible to clients connecting from certain IP addresses. In order to accomplish this, cd in to the directory you wish to restrict, and edit your ''.htaccess'' or ''httpd.conf'' file. The example below shows how to make content only viewable to clients connecting from the UMD wifi in Apache 2.2. | ||
<pre style="white-space: pre-wrap; | <pre style="white-space: pre-wrap; |
Revision as of 18:48, 26 June 2017
UMIACS provides web space hosting for research/lab pages and user pages.
Main Website and Lab Pages
http://www.umiacs.umd.edu
Users can access the main website and lab sites for editing in two ways:
- From Unix as /fs/www - and can be remotely accessed by SFTP to a supported Unix host (eg. OpenLAB)
- From Windows as \\umiacs-webftp.umiacs.umd.edu\www-umiacs - and remotely accessed by the same file share over the VPN
Faculty members and authorized users can modify their own public profiles on the main UMIACS homepage. For instructions, see ContentManagement.
Personal Web Space
http://www.umiacs.umd.edu/~username
Users can access their website for editing two ways:
- From Unix as /fs/www-users/username - and can be remotely accessed via SFTP to a supported UNIX host (eg. OpenLAB)
- From Windows as \\umiacs-webftp.umiacs.umd.edu\www-users\username - and remotely accessed by the same file share over the VPN
In general, large datasets related to a Labs research should go into the specific lab's web tree, not the individual users. Remember that users' webpage is not permanently maintained once the user leaves UMIACS.
Adding A Password Protected Folder To Your Web Space
1) Create the directory you want to password protect or cd into the directory you want to password protect
2) Create a file called .htaccess ( vi .htaccess) in the directory you wish to password protect.
3) In the file you just created type the following lines
AuthUserFile "/your/directory/here/".htpasswd AuthName "Secure Document" AuthType Basic require user username
For example, if you were going to protect the /fs/www-users/username/private directory and you want the required name to be class239, then your file would look like this:
AuthUserFile /fs/www-users/username/private/.htpasswd AuthName "Secure Document" AuthType Basic require user class239
4) Create a file called .htpasswd in the same directory as .htaccess. You create this file by typing in htpasswd -c .htpasswd username in the directory area to be protected.
In the example above, the username is class239 so you would type htpasswd -c .htpasswd class239
You will be prompted to enter the password you want. The .htpasswd file will be created in the current directory and will contain an encrypted version of the password.
To later change the username, edit the .htaccess file and change the username. If you want to later change the password, just retype the above line in step 4 and enter the new password at the prompt.
Restricting Content based on IP address
It is possible to have pages on your webspace only accessible to clients connecting from certain IP addresses. In order to accomplish this, cd in to the directory you wish to restrict, and edit your .htaccess or httpd.conf file. The example below shows how to make content only viewable to clients connecting from the UMD wifi in Apache 2.2.
SetEnvIF X-Forwarded-For "^128\.8\.\d+\.\d+$" UMD_NETWORK SetEnvIF X-Forwarded-For "^129\.2\.\d+\.\d+$" UMD_NETWORK SetEnvIF X-Forwarded-For "^192\.168\.\d+\.\d+$" UMD_NETWORK SetEnvIF X-Forwarded-For "^206\.196\.(?:1[6-9][0-9]|2[0-5][0-9])\.\d+$" UMD_NETWORK SetEnvIF X-Forwarded-For "^10\.\d+\.\d+\.\d+$" UMD_NETWORK Order Deny,Allow Deny from all Allow from env=UMD_NETWORK
The SetEnvIF directive will modify one's environment if the specified attribute matches the provided regular expression. In this example, IP addresses that are forwarded from an IP within UMD's IP space are tagged with UMD_NETWORK. Then, all traffic to the example directory is blocked unless it has the UMD_NETWORK tag. See the following pages for a more in depth explanation of the commands used.