- ssh into
project2.cs.pomona.eduby doingssh {your_username}@project2.cs.pomona.edu cp /home/nmulfinger/make_website.sh ../make_website.sh- There should now be an index.html file within
/home/{your_username}/wwwthat is served every time you visitcs.pomona.edu/~{your_username}
- ssh into
project2.cs.pomona.edu - Move up a directory by doing
cd .. - Run
chmod og+xon the directory for your username. For example, since my username isadesai, this would bechmod og+x adesai/ - cd into your username folder, i.e.
cd adesai - Run
mkdir wwwto create a folder calledwww - Make
wwwexecutable by doingchmod og+x www/ - Put all of the contents for your site in this folder. For example, you can start by creating a simple
index.htmlsite that just says "hello world" - Run
chmod -R og+r *in this folder every single time you add files to make sure every single file is readable.