Header left.png

Difference between revisions of "Web Services"

From Systems Group
Jump to: navigation, search
(Created page with " The ODU CS Department provides faculty and students the ability to host web pages from their CS Unix Account. Users interact with this system through two main components, t...")
 
Line 3: Line 3:
  
 
Users interact with this system through two main components, the <code> ~/secure_html </code> directory and the command line tool <code> webcli </code>
 
Users interact with this system through two main components, the <code> ~/secure_html </code> directory and the command line tool <code> webcli </code>
 +
 +
== Basic Usage ==
 +
 +
* Initial setup
 +
1. SSH into the department's Linux servers (linux-new.cs.odu.edu)
 +
2. Create the ~/secure_html directory with the following commands:
 +
    <code>
 +
    mkdir ~/secure_html
 +
    chmod o+rx ~/secure_html
 +
    </code>
 +
    This will create a directory at /home/<username>/secure_html and give read and directory listing permissions to other user set.

Revision as of 17:14, 12 February 2020

The ODU CS Department provides faculty and students the ability to host web pages from their CS Unix Account.

Users interact with this system through two main components, the ~/secure_html directory and the command line tool webcli

Basic Usage

  • Initial setup
1. SSH into the department's Linux servers (linux-new.cs.odu.edu)
2. Create the ~/secure_html directory with the following commands:
   
   mkdir ~/secure_html
   chmod o+rx ~/secure_html
   
   This will create a directory at /home/<username>/secure_html and give read and directory listing permissions to other user set.