Personal Web Pages

From CS Support
Revision as of 17:48, 20 November 2014 by Sgsax (talk | contribs) (Created page with "Every user account in the CIS department can have a personal web site associated with it. To activate this site, one must place a <code>public_html</code> directory in one's...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Every user account in the CIS department can have a personal web site associated with it. To activate this site, one must place a public_html directory in one's home directory to house the web site. The contents of that directory will then become available via http://www.cis.ksu.edu/~username.

Permissions

One common sticking point with personal web sites in the CIS department is the issue of file permissions. The proper file permissions are essential if others are to be able to successfully view your content.

In Linux the three primary permission categories are user, group, and everyone. Each of these categories then has read, write, and execute permissions. They are traditionally viewed as strings that look like rwxrwxr-- or something similar. Here are some examples:

  • rwxrwxr-- - User: read, write, execute; Group: read, write, execute; Everyone: read only
  • rw-r----- - User: read and write; Group: read only; Everyone: no access
  • r-xr-xrwx - User: read and execute; Group: read and execute; Everyone: read, write, execute
  • r-x-----x - User: read and execute; Group: no access; Everyone: execute

Importantly, Linux uses the execute permission to determine if a client can traverse a directory. Even if every file in a directory is full access for everyone, if the directory those files are in do not have the execute permission set for everyone, they will not be able to see it.

Therefore, it is very common to need to set the following permission on your home directory and public_html directory when first creating your personal site.

chmod 711 ~ chmod 755 ~/public_html chmod 644 ~/public_html/index.html

These commands correspond to:

  • Set permissions of my home directory to rwx--x--x
  • Set permissions of my public_html directory to rwxr-xr-x
  • Set permissions of my index.html file in public_html to rw-r--r--

At this time you may wish to run the command man chmod to learn more about how to set permissions.

Static Content

Static content includes images, html, and other content that is not executed on the server side. The everyone group will need to have read permission to any file that you wish to make available via your web site. All directories that contain static files will need to have the execute permission for the everyone group.

Dynamic Content

Dynamic content is content that is executed on the server and the output of that execution is sent to the client. All dynamic content for personal websites are executed as CGI scripts. Permissions are very important on executable scripts and it is essential that no other user but the owner may have write permission to the script and the directory that contains the script. An example acceptable permission scheme is:

chmod 755 public_html chmod 644 public_html/index.php

Traditionally, cgi scripts that are not PHP (or other inline embedded language) are stored in a cgi-bin directory inside of your public_html directory. An example acceptable permission scheme for the cgi-bin is:

chmod 755 public_html/cgi-bin chmod 755 public_html/cgi-bin/your-script.cgi

The header of your file should not use direct paths. Instead use the /usr/bin/env program as follows::

#!/usr/bin/env perl

You should check /common/weblogs/rampage/suexec_log and /common/weblogs/rampage/error_log to debug any problems you're having with your scripts. The systems team will not debug incorrectly written scripts for you.

Tomcat

We provide an install script that will setup tomcat in your home directory for you. Login to cislinux.cis.ksu.edu and run this command:

$ /common/public/bin/install_tomcat.sh

This will install tomcat to $HOME/tomcat. Once completed, you will be presented with the following information:

Before running your tomcat server you must do the following (non-bash shell
users should make changes accordingly):

1) Make sure JAVA_HOME or JRE_HOME is set in your environment variables by
running 'set | grep JAVA_HOME' or 'set | grep JRE_HOME'.  If neither is set,
you must add 'export JAVA_HOME=/path/to/java/home' (where /path/to/java/home
is the full path to the directory containing the JRE you wish to use) to the
end of your $HOME/.bashrc file.

2) Add 'export CATALINA_HOME=$HOME/tomcat' to the end of your $HOME/.bashrc
file or make sure that command gets executed before running your tomcat server.

3) Edit $HOME/tomcat/conf/server.xml and change the port numbers your tomcat
server will use so that it will not clash with others on the server.

3a) Look for the following section in this file starting around line 70:

<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />

Change the value of port here from 8080 to another port that is not in use

3b) Look for the following section around line 90:

<!-- Define an AJP 1.3 Connector on port 8009 -->
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />

Change the value of port here from 8009 to another port that is not in use.

You do not need to change the value of redirectPort for either section here,
unless you activate the SSL Connector elsewhere in your configuration.

You can find what ports are currently in use by applications by running the
following command: "netstat -ln | grep tcp".  In general, port numbers in the
range 49152–65535 are safe to use.

Once you have done all of this this, you may start your tomcat server by
running $HOME/tomcat/bin/startup.sh.  This will launch it as a daemon and drop
to the background.  To stop your server, run $HOME/tomcat/bin/shutdown.sh.

Make a note of the host you run your tomcat server on.  The hostname cislinux
resolves to two different hosts in round-robin fashion, so if you use that for
your URL, you may get the wrong one.  The current hostnames are viper and
cougar.

You can connect to your server by using the URL http://<hostname>:<port>, where
<hostname> is the host you start the server on, and <port> is the port number
you specified for the HTTP Connector in step 3a above.

If you need help, please send email to help@cis.ksu.edu.

his is also in $HOME/tomcat/README.CIS. Complete tomcat documentation is in $HOME/tomcat/doc.

You may also find the official Apache documentation useful:

Department Listing

Once you have created your personal website, you may link to it from anywhere. Once your site is up, go to your user profile on the main website, click "edit", and then "general info". Simply check the box that says "Show personal webpage", and then click "Save". Your name and link will automatically appear on "students" page on the main website.