Web

From FyshyWyky
Revision as of 17:44, 21 December 2006 by Athan (talk | contribs) (→‎Apache 2.0.x: The CGI suexec problem)
Jump to navigationJump to search

Introduction

bowl.fysh.org runs web servers under the primary hostname of www.fysh.org. We currently utilise Apache 1.3.x (as supplied in Debian 'stable') for this purpose, with one instance running on port 80 for http access and a separate instance on port 443 for https access.

We may also run additional instances of apache, or other web server software, on other ports as needed.

Webmaster

All enquiries about www.fysh.org and other web services should be directed to the Fyshy Webmaster.

User Pages

Any user with an account on fysh can create a page on the [WWW] simply by placing the requisite files in a directory called public_html in their home directory. This will yield a URL of http://www.fysh.org/~username/ for example.

User Domains

Additionally we will host the web pages for any domain that a user owns or controls and can get the DNS changed to point to our IP. Contact the Fyshy Webmaster to enquire about setting this up. Note that you should ensure that you have a valid and working webmaster email account under your own domain when this is set up.

Note that whilst we can offer HTTPS access to your domain it will be with a self-signed certificate for www.fysh.org, and as such any user accessing your domain's web page via HTTPS will get a warning about the hostname mismatch. This is because an SSL certificate for HTTPS is tied to the hostname that the IP the server runs on resolves to. We only have the one IP to use for web services and thus only one possible HTTPS certificate.

If you have a desperate need to run a domain with HTTPS on the www.fysh.org server under your own domain and need to have your own distinct certificate then we may be able to arrange for additional IP(s) as needed, but we will have to pass on the charges of our hosting provider for this to you.

Dynamic Content

Going beyond simple static content we support use of [CGI]s, written using any of the installed development languages, and PHP scripts directly via an Apache module. NB: in the case of CGIs the filename will have to end with either .cgi or .pl, unless the script is inside a virtual host's /cgi-bin/ directory. Files whose name have no extension or other than .cgi or .pl will have their contents displayed instead of being run.

PHP Configuration

We currently only provide and support version 4.3.10 of PHP, as supplied by Debian 'stable'.

Our default PHP configuration is somewhat paranoid and as a result you may find you need to adjust some php settings, either by getting us to change the central config files, or by you making use of a .htaccess file as appropriate. The setting that most often needs adjustment is open_basedir, although we also default register_globals to 'Off'.

Apache 2.0.x

Starting 23rd November 2006 there is an experimental installation of Apache 2.0.* running on bowl.fysh.org using port 81 (as opposed to the usual port 80 for HTTP). The configuration of this matches the current Apache 1.3.x web server as closely as possible, but please see the note below about CGIs. As such, if a web service that you utilise is listed below please do test it with port 81 and report any problems to The Fyshy Webmaster.

Currently this web server should properly be serving pages under:

CGIs

There is a problem with the use of CGIs where the site is configured to run them as a specific user and/or group, rather than the default of www-data for both, AND where the CGI code relies on this for access to files, be this reading/writing extant files or creating new ones.

By default Debian installs 'suexec' (the program that is used to securely allow CGIs to run under a different user/group) to only allow CGIs under /var/www. In the past we have compiled our own local version of this to use the path prefix /home instead. However this is fraught with problems, including the time and hassle in compiling a new version for each patch and the fact that there's a window between installing a new version of apache and us remembering to redo the custom suexec, during which the functionality is broken.

As such with apache2 we have decided to stick with the default /var/www prefix. To support this every apache2 configured site now has a directory under /var/www/virtual, with two sub-directories, cgi-bin and site, i.e.

/var/www/virtual/www.miggy.org
/var/www/virtual/www.miggy.org/site
/var/www/virtual/www.miggy.org/cgi-bin

The ownership on these directories are set the same as the DocumentRoot directory currently configured for the site. Thus the owning user of a site can set up just the CGIs, or the whole site if preferred, to be under this directory.

Note, however, that as yet there have been no changes to the ScriptAlias directive in the apache2 configuration for sites, so it will still be trying to use, i.e.

/home/athan/public_html/cgi-bin/foo

for

http://www.miggy.org:81/cgi-bin/foo

instead of

/var/www/virtual/www.miggy.org/cgi-bin/foo

So what does this mean for you? Well, if you don't use any CGIs at all you needn't worry, but it's probably a good idea to let us know so we can change your ScriptAlias setting to point under /var/www/virtual, rather than wait until you need the functionality and have to get us to change it then. NB: ScriptAlias is just a convenience so that you can use arbitrary filenames for CGI scripts/files so long as they're placed in the specified directory. As configured apache1 and 2 will execute files as CGIs if their filename ends in either .cgi or .pl no matter where they are located.

If you do use CGIs but do not rely at all on them running as a specific user/group then you also needn't worry as things should just work. This means not having User and/or Group directives in the apache 1.3.x configuration for your virtual host (check /etc/apache/httpd.conf).

If you use CGIs and currently have User and/or Group directives for your virtual host in /etc/apache/httpd.conf, even if the CGIs do not actually specifically use this functionality, then your CGIs will not work on port 81 with apache2. It will be trying to run the CGIs as the specified User and/or Group which will then fail when suexec finds they are not under /var/www.

The best thing for you to do is copy (not move, as that would impact on their functionality with apache 1.3.x/port 80) the CGI into the appropriate /var/www/virtual/<site name>/cgi-bin directory, make any necessary adjustments to the code, and then let us know to change the apache2 configuration to point ScriptAlias there. Alternatively, as the current bowl just has "One Big Filesystem[tm]", you can instead hardlink (that's an "ln" command without the "-s" option which would make it a symbolic link instead) the CGI files to the /var/www location. i.e. to have /home/athan/public_html/cgi-bin/foo.cgi work under apache2 issue the command:

ln /home/athan/public_html/cgi-bin/foo.cgi /var/www/virtual/www.miggy.org/cgi-bin/foo.cgi

which will make the latter an additional name for the exact same file and contents.