Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. SSH to any of the lab machines in the barnyard or igppweb.ucsd.edu.
  2. Issue the following command which should make ALL files within your Sites directory readable to visitors to your personal website.

    Code Block
    chmod -R o+r ~/Sites/


  3. This should make ALL files within your Sites directory readable to visitors to your personal website. If there are certain files that should not be accessible to your website visitors, please move them within to a private directory such as ~/Documents: 

    Code Block
    mkdir ~/Documents/unpublished; mv ~/Sites/file to ~/Documents/unpublished



  4. These same steps can be applied to files in your Public folder, as well: 

    Code Block
    chmod -R o+r ~/Public/

    and, If there are certain files that should not be accessible to others, please move them within to a private directory such as ~/Documents: 

    Code Block
    mkdir ~/Documents/unpublished; mv ~/Public/file to ~/Documents/unpublished


...