Blame Scripts/Python/Webenv/webenv.conf

9cade3
# webenv.conf -- This file provides the configuration required by
9cade3
# Apache HTTP server in order for `webenv.cgi' script to be able of
9cade3
# running through it.
d864eb
#
d864eb
# The configuration provided by this file assumes that you've
d864eb
# installed the Apache HTTP server in your workstation and have also
30e7cd
# configured it to public content inside the `public_html' directory
d864eb
# inside the user's home directory. This configuration is mainly for
9cade3
# developers whom have downloaded a working copy of `webenv.cgi' tree
9cade3
# into their worstation in order to on it in a way that it be possible
9cade3
# to test changes before commit them up to the central repository.
d864eb
#
30e7cd
# To install this configuration, copy this file to
30e7cd
# `/etc/httpd/conf.d/' and, after that, reload the httpd server deamon
30e7cd
# (e.g., /sbin/service httpd reload).
d864eb
#
30e7cd
# To test the changes you've made in your working copy directory,
9cade3
# related to `webenv.cgi' tree, open the address
9cade3
# `http://localhost/webenv/' in your web browser and explore the
d864eb
# application looking for them.
d864eb
#
d864eb
# ------------------------------------------------------------------
d864eb
# $Id$
d864eb
# ------------------------------------------------------------------
d864eb
d864eb
# Define the CGI script location. Be sure to use the script file, not
d864eb
# the directory where the script file is stored in. This way, the
d864eb
# security issues are reduced to that CGI script you refered to.
9cade3
ScriptAliasMatch ^/webenv/(.*)$ "/home/centos/public_html/Webenv/webenv.cgi"
d864eb
d864eb
# Define the CGI public location. This is the location where public
d864eb
# files (e.g., images and css files) are stored in.
9cade3
Alias /webenv-pub/ "/home/centos/public_html/Webenv/Public/"