# -FrontPage- version=5.0
#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file. It contains the
# configuration directives that give the server its instructions.
# See for detailed information about
# the directives.
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
#
# The configuration directives are grouped into three basic sections:
# 1. Directives that control the operation of the Apache server process as a
# whole (the 'global environment').
# 2. Directives that define the parameters of the 'main' or 'default' server,
# which responds to requests that aren't handled by a virtual host.
# These directives also provide default values for the settings
# of all virtual hosts.
# 3. Settings for virtual hosts, which allow Web requests to be sent to
# different IP addresses or hostnames and have them handled by the
# same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "/var/log/httpd/foo.log"
# with ServerRoot set to "/var/www" will be interpreted by the
# server as "/var/www//var/log/httpd/foo.log".
#
### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#
#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE! If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation (available
# at );
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
ServerRoot "/var/www"
#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
LockFile /var/log/httpd/accept.lock
#
# ScoreBoardFile: File used to store internal server process information.
# If unspecified (the default), the scoreboard will be stored in an
# anonymous shared memory segment, and will be unavailable to third-party
# applications.
# If specified, ensure that no two invocations of Apache share the same
# scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK.
#
ScoreBoardFile /var/log/httpd/apache_runtime_status
#
# PidFile: The file in which the server should record its process
# identification number when it starts.
#
PidFile /var/run/httpd.pid
#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 30
#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive Off
#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 5
#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 15
LimitInternalRecursion 5
LimitRequestFields 100
LimitRequestFieldSize 4094
LimitRequestLine 4094
##LimitXMLRequestBody 10000
##
## Server-Pool Size Regulation (MPM specific)
##
# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 50
MaxRequestsPerChild 5
ServerLimit 50
# worker MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestsPerChild: maximum number of requests a server process serves
StartServers 2
MaxClients 100
MinSpareThreads 5
MaxSpareThreads 10
ThreadsPerChild 25
MaxRequestsPerChild 20
# perchild MPM
# NumServers: constant number of server processes
# StartThreads: initial number of worker threads in each server process
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# MaxThreadsPerChild: maximum number of worker threads in each server process
# MaxRequestsPerChild: maximum number of connections per server process
NumServers 5
StartThreads 5
MinSpareThreads 5
MaxSpareThreads 10
MaxThreadsPerChild 20
MaxRequestsPerChild 0
# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum number of requests a server process serves
ThreadsPerChild 250
MaxRequestsPerChild 0
# BeOS MPM
# StartThreads: how many threads do we initially spawn?
# MaxClients: max number of threads we can have (1 thread == 1 client)
# MaxRequestsPerThread: maximum number of requests each thread will process
StartThreads 10
MaxClients 50
MaxRequestsPerThread 10000
# NetWare MPM
# ThreadStackSize: Stack size allocated for each worker thread
# StartThreads: Number of worker threads launched at server startup
# MinSpareThreads: Minimum number of idle threads, to handle request spikes
# MaxSpareThreads: Maximum number of idle threads
# MaxThreads: Maximum number of worker threads alive at the same time
# MaxRequestsPerChild: Maximum number of requests a thread serves. It is
# recommended that the default value of 0 be set for this
# directive on NetWare. This will allow the thread to
# continue to service requests indefinitely.
ThreadStackSize 65536
StartThreads 250
MinSpareThreads 25
MaxSpareThreads 250
MaxThreads 1000
MaxRequestsPerChild 0
# OS/2 MPM
# StartServers: Number of server processes to maintain
# MinSpareThreads: Minimum number of idle threads per process,
# to handle request spikes
# MaxSpareThreads: Maximum number of idle threads per process
# MaxRequestsPerChild: Maximum number of connections per server process
StartServers 2
MinSpareThreads 5
MaxSpareThreads 10
MaxRequestsPerChild 0
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
#
#Listen 12.34.56.78:80
Listen 80
AcceptMutex flock
#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
LoadModule access_module /usr/contrib/libexec/apache/mod_access.so
LoadModule auth_module /usr/contrib/libexec/apache/mod_auth.so
##LoadModule auth_anon_module /usr/contrib/libexec/apache/mod_auth_anon.so
##LoadModule auth_dbm_module /usr/contrib/libexec/apache/mod_auth_dbm.so
#LoadModule auth_digest_module /usr/contrib/libexec/apache/mod_auth_digest.so
##LoadModule file_cache_module /usr/contrib/libexec/apache/mod_file_cache.so
LoadModule echo_module /usr/contrib/libexec/apache/mod_echo.so
LoadModule charset_lite_module /usr/contrib/libexec/apache/mod_charset_lite.so
LoadModule cache_module /usr/contrib/libexec/apache/mod_cache.so
LoadModule disk_cache_module /usr/contrib/libexec/apache/mod_disk_cache.so
LoadModule mem_cache_module /usr/contrib/libexec/apache/mod_mem_cache.so
LoadModule ext_filter_module /usr/contrib/libexec/apache/mod_ext_filter.so
LoadModule include_module /usr/contrib/libexec/apache/mod_include.so
LoadModule deflate_module /usr/contrib/libexec/apache/mod_deflate.so
LoadModule log_config_module /usr/contrib/libexec/apache/mod_log_config.so
LoadModule logio_module /usr/contrib/libexec/apache/mod_logio.so
LoadModule env_module /usr/contrib/libexec/apache/mod_env.so
LoadModule mime_magic_module /usr/contrib/libexec/apache/mod_mime_magic.so
LoadModule cern_meta_module /usr/contrib/libexec/apache/mod_cern_meta.so
LoadModule expires_module /usr/contrib/libexec/apache/mod_expires.so
LoadModule headers_module /usr/contrib/libexec/apache/mod_headers.so
LoadModule usertrack_module /usr/contrib/libexec/apache/mod_usertrack.so
LoadModule unique_id_module /usr/contrib/libexec/apache/mod_unique_id.so
LoadModule setenvif_module /usr/contrib/libexec/apache/mod_setenvif.so
LoadModule ssl_module /usr/contrib/libexec/apache/mod_ssl.so
LoadModule bucketeer_module /usr/contrib/libexec/apache/mod_bucketeer.so
LoadModule mime_module /usr/contrib/libexec/apache/mod_mime.so
LoadModule dav_module /usr/contrib/libexec/apache/mod_dav.so
LoadModule status_module /usr/contrib/libexec/apache/mod_status.so
LoadModule autoindex_module /usr/contrib/libexec/apache/mod_autoindex.so
LoadModule asis_module /usr/contrib/libexec/apache/mod_asis.so
LoadModule info_module /usr/contrib/libexec/apache/mod_info.so
LoadModule suexec_module /usr/contrib/libexec/apache/mod_suexec.so
LoadModule cgi_module /usr/contrib/libexec/apache/mod_cgi.so
##LoadModule cgid_module /usr/contrib/libexec/apache/mod_cgid.so
LoadModule dav_fs_module /usr/contrib/libexec/apache/mod_dav_fs.so
LoadModule vhost_alias_module /usr/contrib/libexec/apache/mod_vhost_alias.so
LoadModule negotiation_module /usr/contrib/libexec/apache/mod_negotiation.so
LoadModule dir_module /usr/contrib/libexec/apache/mod_dir.so
LoadModule imap_module /usr/contrib/libexec/apache/mod_imap.so
LoadModule actions_module /usr/contrib/libexec/apache/mod_actions.so
LoadModule speling_module /usr/contrib/libexec/apache/mod_speling.so
LoadModule userdir_module /usr/contrib/libexec/apache/mod_userdir.so
LoadModule alias_module /usr/contrib/libexec/apache/mod_alias.so
LoadModule rewrite_module /usr/contrib/libexec/apache/mod_rewrite.so
LoadModule ruby_module /usr/contrib/libexec/apache/mod_ruby.so
##LoadModule perl_module /usr/contrib/libexec/apache/mod_perl.so
LoadModule python_module /usr/contrib/libexec/apache/mod_python.so
LoadModule php5_module /usr/contrib/libexec/apache/libphp5.so
LoadModule geoip_module /usr/contrib/libexec/apache/mod_geoip.so
LoadModule evasive20_module /usr/contrib/libexec/apache/mod_evasive20.so
LoadModule fortress_module /usr/contrib/libexec/apache/mod_fortress.so
##LoadModule frontpage_module /usr/contrib/libexec/apache/mod_frontpage.so
##LoadModule clamav_module /usr/contrib/libexec/apache/mod_clamav.so
##LoadModule clamav_module /usr/contrib/libexec/apache/mod_clamav.so
##LoadModule bwshare_module /usr/contrib/libexec/apache/mod_bwshare.so
##LoadModule frontpage_module /usr/contrib/libexec/apache/mod_frontpage.so
##LoadModule speedycgi_module /usr/contrib/libexec/apache/mod_speedycgi.so
##LoadModule gzip_module /usr/contrib/libexec/apache/mod_gzip.so
##
#
# ExtendedStatus controls whether Apache will generate "full" status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the "server-status" handler is called. The default is Off.
#
ExtendedStatus On
SetHandler clamav
##ClamavMode daemon
##ClamavTmpdir /tmp/clamav
##ClamavDbdir /usr/contrib/share/clamav
##ClamavSafetypes image/gif image/jpeg image/png
##ClamavMutexName clamav.lock
##ClamavShmname clamav.shm
# the signatures
# signatures file here is in /directory_where_apache_was_installed/logs/signature.conf
FortressSignatures /var/log/httpd/signatures.conf
FortressLog /var/log/fortress.log
FortressLogString "\
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=[ %Th:%Tm:%Ts ]=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=& \
= Source: %Ci & \
= Destination: %Sh & \
= Port: %Sp & \
= Request Line: %Rr & \
= Description: %Rd & \
= Method: %Rm & \
= Protocol: %Rp & \
= Virtual Host: %Sv & \
= User-Agent: %H[User-Agent] & \
= Query Arguments: %Rq & \
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=&"
#
#
# SetHandler bwshare-info
#
#
#
# SetHandler bwshare-trace
#
#
# Some bandwidth control parameters.
#
# BW_tx1debt_max 25
# BW_tx1cred_rate 0.095
# BW_tx2debt_max 3000000
# BW_tx2cred_rate 2500
#
#
DOSHashTableSize 3097
DOSPageCount 2
DOSSiteCount 2
DOSPageInterval 1
DOSSiteInterval 1
DOSBlockingPeriod 10
DOSEmailNotify root@nk.ca
DOSLogDir "/var/log/moddosevasive"
### Section 2: 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# definition. These values also provide defaults for
# any containers you may define later in the file.
#
# All of these directives may appear inside containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# . On SCO (ODT 3) use "User nouser" and "Group nogroup".
# . On HPUX you may not be able to use shared memory as nobody, and the
# suggested workaround is to create a user www and use that user.
# NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
# when the value of (unsigned)Group is above 60000;
# don't use Group #-1 on these systems!
#
User www
Group www
#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. admin@your-domain.com
#
ServerAdmin root@nk.ca
#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If this is not set to valid DNS name for your host, server-generated
# redirections will not work. See also the UseCanonicalName directive.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
# You will have to access it by its address anyway, and this will make
# redirections work in a sensible way.
#
ServerName www.nk.ca
#
# UseCanonicalName: Determines how Apache constructs self-referencing
# URLs and the SERVER_NAME and SERVER_PORT variables.
# When set "Off", Apache will use the Hostname and Port supplied
# by the client. When set "On", Apache will use the value of the
# ServerName directive.
#
UseCanonicalName Off
#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/var/www/htdocs"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
#
# Options FollowSymLinks
# AllowOverride All
#
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
#
# This should be changed to whatever you set DocumentRoot to.
#
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs-2.0/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks Includes SymLinksifOwnerMatch ExecCGI MultiViews
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
#
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received.
#
UserDir html
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
AllowOverride FileInfo AuthConfig Limit Indexes
Options MultiViews Indexes SymLinksIfOwnerMatch Includes
Order allow,deny
Allow from all
Order deny,allow
Deny from all
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents. The MultiViews Option can be used for the
# same purpose, but it is much slower.
#
#DirectoryIndex index.html index.html.var
#
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives. See also the AllowOverride
# directive.
#
AccessFileName .htaccess
#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
Order allow,deny
Deny from all
#
# TypesConfig describes where the mime.types file (or equivalent) is
# to be found.
#
TypesConfig conf/mime.types
#
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value. If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain
#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
MIMEMagicFile conf/magic
#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off
#
# EnableMMAP: Control whether memory-mapping is used to deliver
# files (assuming that the underlying OS supports it).
# The default is on; turn this off if you serve from NFS-mounted
# filesystems. On some systems, turning it off (regardless of
# filesystem) can improve performance; for details, please see
# http://httpd.apache.org/docs-2.0/mod/core.html#enablemmap
#
#EnableMMAP off
#
# EnableSendfile: Control whether the sendfile kernel support is
# used to deliver files (assuming that the OS supports it).
# The default is on; turn this off if you serve from NFS-mounted
# filesystems. Please see
# http://httpd.apache.org/docs-2.0/mod/core.html#enablesendfile
#
#EnableSendfile off
#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a
# container, that host's errors will be logged there and not here.
#
ErrorLog /var/log/httpd/error_log
#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn
#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%a %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
# You need to enable mod_logio.c to use %I and %O
LogFormat "%a %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a
# container, they will be logged here. Contrariwise, if you *do*
# define per- access logfiles, transactions will be
# logged therein and *not* in this file.
#
CustomLog /var/log/httpd/access_log combined
#
# If you would like to have agent and referer logfiles, uncomment the
# following directives.
#
#CustomLog /var/log/httpd/referer_log referer
#CustomLog /var/log/httpd/agent_log agent
#
# If you prefer a single logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
#CustomLog /var/log/httpd/access_log combined
#
# ServerTokens
# This directive configures what you return as the Server HTTP response
# Header. The default is 'Full' which sends information about the OS-Type
# and compiled in modules.
# Set to one of: Full | OS | Minor | Minimal | Major | Prod
# where Full conveys the most information, and Prod the least.
#
ServerTokens Full
#
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (internal error documents, FTP directory
# listings, mod_status and mod_info output etc., but not CGI generated
# documents or custom error documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of: On | Off | EMail
#
ServerSignature On
#
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
#
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL. So "/icons" isn't aliased in this
# example, only "/icons/". If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.
#
# We include the /icons/ alias for FancyIndexed directory listings. If you
# do not use FancyIndexing, you may comment this out.
#
Alias /icons/ "/var/www/icons/"
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
#
# This should be changed to the ServerRoot/manual/. The alias provides
# the manual, even if you choose to move your DocumentRoot. You may comment
# this out if you do not care for the documentation.
#
AliasMatch ^/manual(?:/(?:de|en|fr|ja|ko|ru))?(/.*)?$ "/var/www/manual$1"
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
SetHandler type-map
SetEnvIf Request_URI ^/manual/de/ prefer-language=de
SetEnvIf Request_URI ^/manual/en/ prefer-language=en
SetEnvIf Request_URI ^/manual/fr/ prefer-language=fr
SetEnvIf Request_URI ^/manual/ja/ prefer-language=ja
SetEnvIf Request_URI ^/manual/ko/ prefer-language=ko
SetEnvIf Request_URI ^/manual/ru/ prefer-language=ru
RedirectMatch 301 ^/manual(?:/(de|en|fr|ja|ko|ru)){2,}(/.*)?$ /manual/$1$2
#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
#
# Additional to mod_cgid.c settings, mod_cgid has Scriptsock
# for setting UNIX socket for communicating with cgid.
#
#Scriptsock /var/run/cgisock
#
# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
AllowOverride None
Options None
Order allow,deny
Allow from all
#
# Redirect allows you to tell clients about documents which used to exist in
# your server's namespace, but do not anymore. This allows you to tell the
# clients where to look for the relocated document.
# Example:
# Redirect permanent /foo http://www.example.com/bar
#
# Directives controlling the display of server-generated directory listings.
#
#
# IndexOptions: Controls the appearance of server-generated directory
# listings.
#
IndexOptions FancyIndexing VersionSort
#
# AddIcon* directives tell the server which icon to show for different
# files or filename extensions. These are only displayed for
# FancyIndexed directories.
#
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core
AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^
#
# DefaultIcon is which icon to show for files which do not have an icon
# explicitly set.
#
DefaultIcon /icons/unknown.gif
#
# AddDescription allows you to place a short description after a file in
# server-generated indexes. These are only displayed for FancyIndexed
# directories.
# Format: AddDescription "description" filename
#
#AddDescription "GZIP compressed document" .gz
#AddDescription "tar archive" .tar
#AddDescription "GZIP compressed tar archive" .tgz
#
# ReadmeName is the name of the README file the server will look for by
# default, and append to directory listings.
#
# HeaderName is the name of a file which should be prepended to
# directory indexes.
ReadmeName README.html
HeaderName HEADER.html
#
# IndexIgnore is a set of filenames which directory indexing should ignore
# and not include in the listing. Shell-style wildcarding is permitted.
#
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
#
# AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
# information on the fly. Note: Not all browsers support this.
# Despite the name similarity, the following Add* directives have nothing
# to do with the FancyIndexing customization directives above.
#
#AddEncoding x-compress Z
#AddEncoding x-gzip gz tgz
#
# DefaultLanguage and AddLanguage allows you to specify the language of
# a document. You can then use content negotiation to give a browser a
# file in a language the user can understand.
#
# Specify a default language. This means that all data
# going out without a specific language tag (see below) will
# be marked with this one. You probably do NOT want to set
# this unless you are sure it is correct for all cases.
#
# * It is generally better to not mark a page as
# * being a certain language than marking it with the wrong
# * language!
#
# DefaultLanguage nl
#
# Note 1: The suffix does not have to be the same as the language
# keyword --- those with documents in Polish (whose net-standard
# language code is pl) may wish to use "AddLanguage pl .po" to
# avoid the ambiguity with the common suffix for perl scripts.
#
# Note 2: The example entries below illustrate that in some cases
# the two character 'Language' abbreviation is not identical to
# the two character 'Country' code for its country,
# E.g. 'Danmark/dk' versus 'Danish/da'.
#
# Note 3: In the case of 'ltz' we violate the RFC by using a three char
# specifier. There is 'work in progress' to fix this and get
# the reference data for rfc1766 cleaned up.
#
# Danish (da) - Dutch (nl) - English (en) - Estonian (et)
# French (fr) - German (de) - Greek-Modern (el)
# Italian (it) - Norwegian (no) - Norwegian Nynorsk (nn) - Korean (ko)
# Portugese (pt) - Luxembourgeois* (ltz)
# Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cs)
# Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
# Russian (ru) - Croatian (hr)
#
AddLanguage da .dk
AddLanguage nl .nl
AddLanguage en .en
AddLanguage et .et
AddLanguage fr .fr
AddLanguage de .de
AddLanguage he .he
AddLanguage el .el
AddLanguage it .it
AddLanguage ja .ja
AddLanguage pl .po
AddLanguage ko .ko
AddLanguage pt .pt
AddLanguage nn .nn
AddLanguage no .no
AddLanguage pt-br .pt-br
AddLanguage ltz .ltz
AddLanguage ca .ca
AddLanguage es .es
AddLanguage sv .sv
AddLanguage cs .cz .cs
AddLanguage ru .ru
AddLanguage zh-CN .zh-cn
AddLanguage zh-TW .zh-tw
AddLanguage hr .hr
#
# LanguagePriority allows you to give precedence to some languages
# in case of a tie during content negotiation.
#
# Just list the languages in decreasing order of preference. We have
# more or less alphabetized them here. You probably want to change this.
#
LanguagePriority en fr ja ko da nl et de el it no pl pt pt-br ltz ca es sv tw
#
# ForceLanguagePriority allows you to serve a result page rather than
# MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
# [in case no accepted languages matched the available variants]
#
ForceLanguagePriority Prefer Fallback
#
# Specify a default charset for all pages sent out. This is
# always a good idea and opens the door for future internationalisation
# of your web site, should you ever want it. Specifying it as
# a default does little harm; as the standard dictates that a page
# is in iso-8859-1 (latin1) unless specified otherwise i.e. you
# are merely stating the obvious. There are also some security
# reasons in browsers, related to javascript and URL parsing
# which encourage you to always set a default char set.
#
AddDefaultCharset ISO-8859-1
#
# Commonly used filename extensions to character sets. You probably
# want to avoid clashes with the language extensions, unless you
# are good at carefully testing your setup after each change.
# See http://www.iana.org/assignments/character-sets for the
# official list of charset names and their respective RFCs.
#
AddCharset ISO-8859-1 .iso8859-1 .latin1
AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
AddCharset ISO-8859-3 .iso8859-3 .latin3
AddCharset ISO-8859-4 .iso8859-4 .latin4
AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru
AddCharset ISO-8859-6 .iso8859-6 .latin6 .arb
AddCharset ISO-8859-7 .iso8859-7 .latin7 .grk
AddCharset ISO-8859-8 .iso8859-8 .latin8 .heb
AddCharset ISO-8859-9 .iso8859-9 .latin9 .trk
AddCharset ISO-2022-JP .iso2022-jp .jis
AddCharset ISO-2022-KR .iso2022-kr .kis
AddCharset ISO-2022-CN .iso2022-cn .cis
AddCharset Big5 .Big5 .big5
# For russian, more than one charset is used (depends on client, mostly):
AddCharset WINDOWS-1251 .cp-1251 .win-1251
AddCharset CP866 .cp866
AddCharset KOI8-r .koi8-r .koi8-ru
AddCharset KOI8-ru .koi8-uk .ua
AddCharset ISO-10646-UCS-2 .ucs2
AddCharset ISO-10646-UCS-4 .ucs4
AddCharset UTF-8 .utf8
# The set below does not map to a specific (iso) standard
# but works on a fairly wide range of browsers. Note that
# capitalization actually matters (it should not, but it
# does for some browsers).
#
# See http://www.iana.org/assignments/character-sets
# for a list of sorts. But browsers support few.
#
AddCharset GB2312 .gb2312 .gb
AddCharset utf-7 .utf7
AddCharset utf-8 .utf8
AddCharset big5 .big5 .b5
AddCharset EUC-TW .euc-tw
AddCharset EUC-JP .euc-jp
AddCharset EUC-KR .euc-kr
AddCharset shift_jis .sjis
#
# AddType allows you to add to or override the MIME configuration
# file mime.types for specific file types.
#
AddType application/x-tar .tgz
AddType image/x-icon .ico
#
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
#
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
#
#AddHandler cgi-script .cgi
#
# For files that include their own HTTP headers:
#
#AddHandler send-as-is asis
#
# For server-parsed imagemap files:
#
#AddHandler imap-file map
#
# For type maps (negotiated resources):
# (This is enabled by default to allow the Apache "It Worked" page
# to be distributed in multiple languages.)
#
AddHandler type-map var
#
# Filters allow you to process content before it is sent to the client.
#
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
#
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
#
# Action lets you define media types that will execute a script whenever
# a matching file is called. This eliminates the need for repeated URL
# pathnames for oft-used CGI file processors.
# Format: Action media/type /cgi-script/location
# Format: Action handler-name /cgi-script/location
#
#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#
#
# Putting this all together, we can internationalize error responses.
#
# We use Alias to redirect any /error/HTTP_.html.var response to
# our collection of by-error message multi-language collections. We use
# includes to substitute the appropriate text.
#
# You can modify the messages' appearance without changing any of the
# default HTTP_.html.var files by adding the line:
#
# Alias /error/include/ "/your/include/path/"
#
# which allows you to create your own set of files by starting with the
# /var/www/error/include/ files and copying them to /your/include/path/,
# even on a per-VirtualHost basis. The default include files will display
# your Apache version number and your ServerAdmin email address regardless
# of the setting of ServerSignature.
#
# The internationalized error documents require mod_alias, mod_include
# and mod_negotiation. To activate them, uncomment the following 30 lines.
Alias /error/ "/var/www/error/"
AllowOverride None
Options IncludesNoExec
AddOutputFilter Includes html
AddHandler type-map var
Order allow,deny
Allow from all
LanguagePriority en cs de es fr it nl sv pt-br ro
ForceLanguagePriority Prefer Fallback
AllowOverride None
Options IncludesNoExec
AddOutputFilter Includes html
AddHandler type-map var
Order allow,deny
Allow from all
LanguagePriority ja en cs de es fr it nl sv pt-br ro
ForceLanguagePriority Prefer Fallback
ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
ErrorDocument 410 /error/HTTP_GONE.html.var
ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
#
# The following directives modify normal HTTP response behavior to
# handle known problems with browser implementations.
#
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0
#
# The following directive disables redirects on non-GET requests for
# a directory that does not include the trailing slash. This fixes a
# problem with Microsoft WebFolders which does not appropriately handle
# redirects for folders with DAV methods.
# Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
#
BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
BrowserMatch "^WebDrive" redirect-carefully
BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
BrowserMatch "^gnome-vfs" redirect-carefully
#
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
# Change the ".example.com" to match your domain to enable.
#
SetHandler server-status
# Order deny,allow
# Deny from all
# Allow from .example.com
#
# Allow remote server configuration reports, with the URL of
# http://servername/server-info (requires that mod_info.c be loaded).
# Change the ".example.com" to match your domain to enable.
#
SetHandler server-info
# Order deny,allow
# Deny from all
# Allow from .example.com
#
# Bring in additional module-specific configurations
#
Include /var/www/conf/ssl.conf
### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
#
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
# Use name-based virtual hosting.
#
#NameVirtualHost *
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#
# ServerAdmin webmaster@dummy-host.example.com
# DocumentRoot /www/docs/dummy-host.example.com
# ServerName dummy-host.example.com
# ErrorLog /var/log/httpd/dummy-host.example.com-error_log
# CustomLog /var/log/httpd/dummy-host.example.com-access_log common
#
HostnameLookups on
User www
Group www
ServerAdmin root@mail.nl2k.ab.ca
PidFile /var/run/httpd.pid
ScoreBoardFile /var/run/apache_runtime_status
LockFile /var/run/accept.lock
##ServerName www.nl2k.ab.ca
ServerSignature on
UseCanonicalName on
##ResourceConfig /dev/null
##RLimitCPU 1 3200
##RLimitMEM 1 320000
##RLimitNPROC 1 320000
#
# ExtendedStatus controls whether Apache will generate "full" status
##Perlrequire /var/www/conf/startup.pl
ExtendedStatus On
Options Indexes FollowSymLinks MultiViews
Options Includes ExecCGI
DirectoryIndex index.phtml index.php index.php3 index.rhtml index.rbx index.cgi index.pl index.shtml index.html index.htm
AllowOverride All
order allow,deny
allow from all
##FastCgiIpcDir /var/www/cgi-bin
order allow,deny
allow from 204.209.81.0/255.255.255.0
allow from 216.95.238.0/255.255.255.0
SetHandler server-status
order deny,allow
allow from .nl2k.ab.ca
##SetHandler fastcgi-script
AllowOverride None
Options None
AllowOverride None
Options None
Options Indexes FollowSymLinks MultiViews
Options Includes ExecCGI
DirectoryIndex index.phtml index.php index.php3 index.rhtml index.rbx index.cgi index.pl index.shtml index.html index.htm
#
# UserDir: The name of the directory which is appended onto a user's home
# directory if a ~user request is received.
#
#
# UserDir html
#
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
AllowOverride All
order allow,deny
allow from all
Options Indexes FollowSymLinks MultiViews
Options Includes ExecCGI
DirectoryIndex index.phtml index.php index.php3 index.rhtml index.rbx index.cgi index.pl index.shtml index.html index.htm
#
# UserDir: The name of the directory which is appended onto a user's home
# directory if a ~user request is received.
#
#
# UserDir html
#
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
AllowOverride All
order allow,deny
allow from all
AllowOverRide All
Options Indexes FollowSymLinks MultiViews
Options Includes ExecCGI
DirectoryIndex index.cgi index.pl index.shtml index.html index.htm
AllowOverride All
order allow,deny
allow from all
AllowOverride None
Options None
AllowOverride None
Options None
DavLockDB /var/DavLock
Dav On
AuthType Basic
AuthName DAV
AuthUserFile /usr/home/hbdir/.htpasswd
require hbdir user admin
#GeoIPEnable On
#GeoIPDBFile /usr/contrib/lib/GeoIP/GeoIP.dat
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
RewriteCond %{HTTP_USER_AGENT} email.?(magnet|reaper|siphon|harvest|collect|wolf) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} floodgate [NC,OR]
RewriteCond %{HTTP_USER_AGENT} web(bandit|snake|collector|mole|miner|weasel) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} cherry.?picker [NC,OR]
RewriteCond %{HTTP_USER_AGENT} extractor.?pro [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^crescent [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^teleport [NC,OR]
RewriteCond %{HTTP_USER_AGENT} nicerspro [NC]
RewriteCond %{REQUEST_URI} !^/sugarplum/
RewriteRule .* /sugarplum/visions [PT]
ScriptAlias /sugarplum/ /var/www/cgi-bin/sugarplum/poison/
order deny,allow
deny from all
allow from 127.0.0.1
##AccessConfig /dev/null
DocumentRoot /var/www/docs
UserDir html
DirectoryIndex index.rhtml index.rbx index.py index.pl index.shtml index.html index.htm index
##FancyIndexing on
AddIconByEncoding (CMP,/apache_icons/compressed.gif) x-compress x-gzip
AddIconByType (TXT,/apache_icons/text.gif) text/*
AddIconByType (IMG,/apache_icons/image2.gif) image/*
AddIconByType (SND,/apache_icons/sound2.gif) audio/*
AddIconByType (VID,/apache_icons/movie.gif) video/*
AddIcon /apache_icons/binary.gif .bin .exe
AddIcon /apache_icons/binhex.gif .hqx
AddIcon /apache_icons/tar.gif .tar
AddIcon /apache_icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /apache_icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /apache_icons/a.gif .ps .ai .eps
AddIcon /apache_icons/layout.gif .html .shtml .htm .pdf
AddIcon /apache_icons/text.gif .txt
AddIcon /apache_icons/c.gif .c
AddIcon /apache_icons/p.gif .pl .py
AddIcon /apache_icons/f.gif .for
AddIcon /apache_icons/dvi.gif .dvi
AddIcon /apache_icons/uuencoded.gif .uu
AddIcon /apache_icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /apache_icons/tex.gif .tex
AddIcon /apache_icons/bomb.gif core
AddIcon /apache_icons/back.gif ..
AddIcon /apache_icons/hand.right.gif README
AddIcon /apache_icons/folder.gif ^^DIRECTORY^^
AddIcon /apache_icons/blank.gif ^^BLANKICON^^
DefaultIcon /apache_icons/unknown.gif
ReadmeName README
HeaderName HEADER
IndexIgnore */.??* *~ *# */HEADER* */README* */RCS
AccessFileName .htaccess
DefaultType text/plain
AddEncoding x-compress Z
AddEncoding x-gzip gz
AddLanguage en .en
AddLanguage fr .fr
AddLanguage de .de
AddLanguage da .da
AddLanguage el .el
AddLanguage it .it
LanguagePriority en fr de
##PerlModule Apache2
###For compat with the 1.x version, you'll want to configure:
##PerlModule Apache::compat
SetHandler perl-script
PerlHandler Apache2::Registry
Options +ExecCGI
# Flash MIME type mappings
AddType application/futuresplash spl
AddType application/x-shockwave-flash swf
AddType video/x-ms-asf ASF
AddType video/x-ms-asf asf
AddType video/x-ms-wmv wmv
AddType video/x-ms-wma wma
# Macromedia Mime Types
# Director MIME type mappings
AddType application/x-director dir
AddType application/x-director dcr
AddType application/x-director dxr
# Authorware MIME type mappings
AddType application/x-authorware-map aam
AddType application/x-authorware-seg aas
AddType application/x-authorware-bin aab
# FreeHand MIME type mappings
AddType image/x-freehand fh4
AddType image/x-freehand fh7
AddType image/x-freehand fh5
AddType image/x-freehand fhc
AddType image/x-freehand fh
### http://www.macromedia.com/support/flash/ts/documents/mimetype_check.htm
AddType application/x-pn-realaudio .ram
AddType application/x-realaudio .ra
AddType application/x-pn-realaudio-plugin .rpm
AddType application/x-pn-realaudio .rm
AddType application/asf .asf
AddType application/asf .ASF
AddType application/x-httpd-php .php .php3 .php4
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php3 .php3
AddType application/x-httpd-php-source .phps
AddType chemical/x-mdl-mol .mol mol
AddType chemical/x-mdl-sdf .sdf sdf
AddType chemical/x-mdl-tgf .tgf tgf
AddType chemical/x-cml .cml cml
AddHandler fastcgi-script .fcgi
AddHandler fastcgi-script .fcg
AddHandler fastcgi-script .fpl
AddHandler cgi-script .cgi
AddHandler cgi-script .py
AddHandler cgi-script .pl
AddHandler cgi-script .pl5
AddType image/x-xpixmap *.xpm
AddType image/x-xbitmap *.xbm
AddType image/gif *.gif
AddType text/plain *.txt *.pl *.js *.h *.c *.pm *.e
AddType text/html *.html *.htm
AddType text/xml *.xml
AddType text/rtf *.rtf
AddType application/pdf *.pdf
AddType application/msword *.doc
AddType application/vnd.ms-excel *.xls
AddType text/x-postscript *.ps
AddType text/x-hdml .hdml
AddType text/html .shtml
AddType application/x-ns-proxy-autoconfig .pac
AddHandler server-parsed .shtml
AddType application/x-httpd-php3 .php3
AddHandler send-as-is asis
AddHandler imap-file map
AddHandler type-map var
#AddHandler foot-action foot
#Action foot-action /cgi-bin/footer
#Action text/html /cgi-bin/footer
#MetaDir .web
#MetaSuffix .meta
# Customizable error response (Apache style)
# these come in three flavors
#
# 1) plain text
ErrorDocument 500 "Looks like a perl error.
# n.b. the (") marks it as text, it does not get output
#
# 2) local redirects
ErrorDocument 404 http://www.nk.ca/index.shtml
# to redirect to local url /missing.html
#ErrorDocument 404 /cgi-bin/missing_handler.pl
# n.b. can redirect to a script or a document using server-side-includes.
#
# 3) external redirects
ErrorDocument 402 http://other.server.com/subscription_info.html
#
Timeout 30
KeepAlive Off
MaxKeepAliveRequests 100
KeepAliveTimeout 15
##MinSpareServers 5
##MaxSpareServers 6
##StartServers 5
##MaxClients 150
##MaxMemFree 51200
MaxRequestsPerChild 20
##MaxSpareThreads 10
SendBufferSize 100000
ServerLimit 1000
##ThreadLimit 10000
##ThreadsPerChild 16
##ThrottlePolicy idle
##$ThrottleMaxDelay 180
SetHandler throttle-status
SetHandler throttle-me
SetHandler throttle-me
#ProxyRequests On
#ProxyVia on
#CacheRoot @@ServerRoot@@/proxy
#CacheSize 5
#CacheGcInterval 4
#CacheMaxExpire 24
#CacheLastModifiedFactor 0.1
#CacheDefaultExpire 1
#NoCache a_domain.com another_domain.edu joes.garage_sale.com
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the VirtualHost command
#Listen 3000
#Listen 12.34.56.78:80
# VirtualHost: Allows the daemon to respond to requests for more than one
# server address, if your server machine is configured to accept IP packets
# for multiple addresses. This can be accomplished with the ifconfig
# alias flag, or through kernel patches like VIF.
# Any httpd.conf or srm.conf directive may go into a VirtualHost command.
# See also the BindAddress entry.
AllowOverride None
SetHandler perl-script
PerlHandler Apache2::Registry
Options ExecCGI
allow from all
PerlSendHeader On
AllowOverride None
SetHandler perl-script
PerlHandler Apache2::PerlRun
Options ExecCGI
allow from all
SetHandler perl-script
PerlHandler Apache2::Status
order deny,allow
deny from all
allow from all
##RubyRequire apache/ruby-run
Options +ExecCGI
SetHandler ruby-object
RubyHandler Apache::RubyRun.instance
##RubyRequire apache/eruby-run
SetHandler ruby-object
RubyHandler Apache::ERubyRun.instance
##ASP##PERL##APACHE##UNIX##WINNT##ASP##PERL##APACHE##NOT##IIS##ASP##
## INSERT INTO Apache *.conf file, probably access.conf
##ASP##PERL##APACHE##ACTIVE##SERVER##PAGES##SCRIPTING##FREE##PEACE##
###########################################################
## mandatory
###########################################################
# Generic apache directives to make asp start ticking.
SetHandler perl-script
###PerlHandler Apache::ASP
##PerlSetVar Global /tmp
###########################################################
## optional flags
###########################################################
##PerlSetVar CookiePath /
##PerlSetVar AllowSessionState 1
##PerlSetVar SessionTimeout 20
##PerlSetVar Debug 2
##PerlSetVar BufferingOn 1
##PerlSetVar StatINC 1
##PerlSetVar SessionSerialize 0
##PerlSetVar SoftRedirect 0
##PerlSetVar NoState 0
##PerlSetVar StateDir ./.state
##PerlSetVar StateManager 10
##PerlSetVar Filter Off
##PerlSetVar PodComments 1
##ASP##PERL##APACHE##UNIX##WINNT##ASP##PERL##APACHE##NOT##IIS##ASP##
## END INSERT
##ASP##PERL##APACHE##ACTIVE##SERVER##PAGES##SCRIPTING##!#MICROSOFT##
#
#ServerAdmin webmaster@host.some_domain.com
#DocumentRoot /www/docs/host.some_domain.com
#ServerName host.some_domain.com
#ErrorLog logs/host.some_domain.com-error_log
#TransferLog logs/host.some_domain.com-access_log
#
ServerAdmin amurphy@nk.ca
DocumentRoot /usr/home/amurphy/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName myhomehealthcare.ca
ErrorLog /var/log/httpd/myhomehealthcare-error_log
CustomLog /var/log/httpd/myhomehealthcare-access_log combined
ScriptAlias /cgi-bin/ /usr/home/amurphy/cgi-bin/
ServerAdmin mbarnes@nk.ca
Redirect 301 / http://www.discountdining.ca/coupons/kyoto.htm
DocumentRoot /usr/home/mbarnes/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName kyoto.ca
ErrorLog /var/log/httpd/kyoto-error_log
CustomLog /var/log/httpd/kyoto-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mbarnes/cgi-bin/
ServerAdmin hometohomemoving@nk.ca
DocumentRoot /usr/home/hometohomemoving/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName hometohomemoving.com
ErrorLog /var/log/httpd/hometohomemoving-error_log
CustomLog /var/log/httpd/hometohomemoving-access_log combined
ScriptAlias /cgi-bin/ /usr/home/hometohomemoving/cgi-bin/
ServerAdmin bishop@nk.ca
DocumentRoot /usr/home/bishop/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName franticmedia.ca
ErrorLog /var/log/httpd/franticmedia-error_log
CustomLog /var/log/httpd/franticmedia-access_log combined
ScriptAlias /cgi-bin/ /usr/home/bishop/cgi-bin/
DocumentRoot "/var/www/docs/dspam/html"
ServerName dspam.nk.ca
ServerAdmin webmaster@nk.ca
ErrorLog /var/log/httpd/dspam-error_log
TransferLog /var/log/httpd/dspam-access_log
DirectoryIndex dspam.cgi
SuexecUserGroup dspam dspam
Options FollowSymLinks ExecCGI
AllowOverride None
Order deny,allow
Deny from all
##SSLRequireSSL
AuthType Basic
AuthName "DSPAM Control Center"
AuthUserFile /var/log/httpd/dspam/etc/htpasswd
Require valid-user
Satisfy Any
ServerAdmin vaply@nl2k.ab.ca
DocumentRoot /usr/home/john/ConfederationBuilding.com/
ServerName valpybuilding.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/confederationbuilding.com-error_log
CustomLog /var/log/httpd/confederationbuilding.com-access_log combined
ServerAdmin xplosive@nk.ca
DocumentRoot /usr/home/xplosive/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName xplosiveaudio.ca
ErrorLog /var/log/httpd/xplosiveaudio-error_log
CustomLog /var/log/httpd/xplosiveaudio-access_log combined
ScriptAlias /cgi-bin/ /usr/home/xplosive/cgi-bin/
ServerAdmin pet@nk.ca
DocumentRoot /usr/home/pet/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName ilovemypet.com
ErrorLog /var/log/httpd/ilovemypet-cdn-error_log
CustomLog /var/log/httpd/ilovemypet-cdn-access_log combined
ScriptAlias /cgi-bin/ /usr/home/pet/cgi-bin/
ServerAdmin adaneil@nk.ca
DocumentRoot /usr/home/ada/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName adacreations.biz
ErrorLog /var/log/httpd/adacreations-error_log
CustomLog /var/log/httpd/adacreations-access_log combined
ScriptAlias /cgi-bin/ /usr/home/ada/cgi-bin/
ServerAdmin mgoodine@alocalchoice.com
DocumentRoot /usr/home/envsol/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName environmental-solutions.ca
ErrorLog /var/log/httpd/environmental-solutions-error_log
CustomLog /var/log/httpd/environmental-solutions-access_log combined
ScriptAlias /cgi-bin/ /usr/home/envsol/cgi-bin/
ServerAdmin bjm@nk.ca
DocumentRoot /usr/home/safint/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName safety-results-institute.ca
ErrorLog /var/log/httpd/safety-results-institute-error_log
CustomLog /var/log/httpd/safety-results-institute-access_log combined
ScriptAlias /cgi-bin/ /usr/home/safint/cgi-bin/
ServerAdmin neila@nk.ca
DocumentRoot /usr/home/neila/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName flooringpros.ca
ErrorLog /var/log/httpd/flooringpros-error_log
CustomLog /var/log/httpd/flooringpros-access_log combined
ErrorDocument 404 http://www.flooringpros.ca/index.html
ScriptAlias /cgi-bin/ /usr/home/neila/cgi-bin/
ServerAdmin mbarnes@nk.ca
DocumentRoot /usr/home/mbarnes/html/golfing/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName golfingedmonton.com
ErrorLog /var/log/httpd/golfingedmonton-error_log
CustomLog /var/log/httpd/golfingedmonton-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mbarnes/cgi-bin/
ServerAdmin exposure@nk.ca
DocumentRoot /usr/home/doublel/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName doubleltowing.com
ErrorLog /var/log/httpd/doubleltowing-error_log
CustomLog /var/log/httpd/doubleltowing-access_log combined
ScriptAlias /cgi-bin/ /usr/home/doublel/cgi-bin/
ServerAdmin mbarnes@nk.ca
DocumentRoot /usr/home/bradwerenka/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName bradwerenka.com
ErrorLog /var/log/httpd/bradwerenka-error_log
CustomLog /var/log/httpd/bradwerenka-access_log combined
ScriptAlias /cgi-bin/ /usr/home/bradwerenka/cgi-bin/
ServerAdmin itaw@nk.ca
DocumentRoot /usr/home/itaw/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName itaw.ca
ErrorLog /var/log/httpd/itaw-error_log
CustomLog /var/log/httpd/itaw-access_log combined
ScriptAlias /cgi-bin/ /usr/home/itaw/cgi-bin/
ServerAdmin tim@nk.ca
DocumentRoot /usr/home/tim/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName timbo.ca
ErrorLog /var/log/httpd/timbo-error_log
CustomLog /var/log/httpd/timbo-access_log combined
ScriptAlias /cgi-bin/ /usr/home/tim/cgi-bin/
ServerAdmin root@nk.ca
DocumentRoot /var/www/docs/test/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName t4taxinc.ca
ErrorLog /var/log/httpd/t4taxinc-error_log
CustomLog /var/log/httpd/t4taxinc-access_log combined
ScriptAlias /cgi-bin/ /var/www/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_AB_ac
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName alberta-accommodations.com
ErrorLog /var/log/httpd/alberta-accommodations-error_log
CustomLog /var/log/httpd/alberta-accommodations-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_AB_cg
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName alberta-campgrounds.com
ErrorLog /var/log/httpd/alberta-campgrounds-error_log
CustomLog /var/log/httpd/alberta-campgrounds-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_AB_ht
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName alberta-hotels.com
ErrorLog /var/log/httpd/alberta-hotels-error_log
CustomLog /var/log/httpd/alberta-hotels-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_AB_tg
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName alberta-travelguide.com
ErrorLog /var/log/httpd/alberta-travelguide-error_log
CustomLog /var/log/httpd/alberta-travelguide-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_AB_hm
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName alberta-hotelmotels.com
ErrorLog /var/log/httpd/alberta-hotelmotels-error_log
CustomLog /var/log/httpd/alberta-hotelmotels-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_AB_rz
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName alberta-reservations.com
ErrorLog /var/log/httpd/alberta-reservations-error_log
CustomLog /var/log/httpd/alberta-reservations-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_ABtg/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName albertatravelguide.com
ErrorLog /var/log/httpd/albertatravelguide-error_log
CustomLog /var/log/httpd/albertatravelguide-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_cgAB/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName campgroundsalberta.com
ErrorLog /var/log/httpd/campgroundsalberta-error_log
CustomLog /var/log/httpd/campgroundsalberta-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_ABif/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName explorealberta.info
ErrorLog /var/log/httpd/explorealberta-error_log
CustomLog /var/log/httpd/explorealberta-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_Calif/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName explorecalgary.info
ErrorLog /var/log/httpd/explorecalgary-error_log
CustomLog /var/log/httpd/explorecalgary-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_Edmif/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName exploreedmonton.info
ErrorLog /var/log/httpd/exploreedmonton-error_log
CustomLog /var/log/httpd/exploreedmonton-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_Jasif/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName explorejasper.info
ErrorLog /var/log/httpd/explorejasper-error_log
CustomLog /var/log/httpd/explorejasper-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/EA_Bffif/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName explorebanff.info
ErrorLog /var/log/httpd/explorebanff-error_log
CustomLog /var/log/httpd/explorebanff-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
##open
ServerAdmin tsimail@nl2k.ab.ca
DocumentRoot /usr/home/tsimail/html/
ServerName tsiworks.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/tsiworks/cgi-bin/
ErrorLog /var/log/httpd/tsiworks-error_log
CustomLog /var/log/httpd/tsiworks-access_log combined
ServerAdmin pplay@nl2k.ab.ca
DocumentRoot /usr/home/pplay/html/
ServerName powerfulplayexperiences.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/pplay/cgi-bin/
ErrorLog /var/log/httpd/powerfulplayexperiences-error_log
CustomLog /var/log/httpd/powerfulplayexpereinces-access_log combined
ServerAdmin iuoe955union@nl2k.ab.ca
DocumentRoot /usr/home/iuoe955union/html/
ServerName iuoe955union.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/iuoe955union/cgi-bin/
ErrorLog /var/log/httpd/iuoe955union-error_log
CustomLog /var/log/httpd/iuoe955union-access_log combined
ServerAdmin rooms@nl2k.ab.ca
DocumentRoot /usr/home/rooms/html/
ServerName econolodgeedm.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/econolodgeedm-error_log
CustomLog /var/log/httpd/econolodgeedm-access_log combined
Alias /cgi-bin/ /usr/home/rooms/cgi-bin/
ServerAdmin vaply@nl2k.ab.ca
DocumentRoot /usr/home/john/EnglishSchool.ca/
ServerName canadastudy.org
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/canadastudy.org-error_log
CustomLog /var/log/httpd/canadastudy.org-access_log combined
ServerAdmin edmnut@nl2k.ab.ca
DocumentRoot /usr/home/edmnut/html/
ServerName edmontonnutandbolt.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/edmontonnutandbolt-error_log
CustomLog /var/log/httpd/edmontonnutandbolt-access_log combined
ScriptAlias /cgi-bin/ "/usr/home/edmnut/cgi-bin/"
ServerAdmin edmontonoilmens@nl2k.ab.ca
DocumentRoot /usr/home/edmontonoilmens/html/
ServerName edmontonoilmenshockey.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/edmontonoilmenshockey-error_log
CustomLog /var/log/httpd/edmontonoilmenshockey-access_log combined
ScriptAlias /cgi-bin/ /usr/home/edmontonoilmens/cgi-bin/
ServerAdmin lawracom@nl2k.ab.ca
DocumentRoot /usr/home/franklinsinn/html/
ServerName franklinsinn.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/franklinsinn-error_log
CustomLog /var/log/httpd/franklinsinn-access_log combined
ScriptAlias /cgi-bin/ /usr/home/franklinnsinn/cgi-bin/
ServerAdmin tgarner@nk.ca
DocumentRoot /usr/home/tgarner/html
ServerName pdsolutions.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/pdsolutions-error_log
CustomLog /var/log/httpd/pdsolutions-access_log combined
ScriptAlias /cgi-bin/ /usr/home/tgarner/cgi-bin
ServerAdmin vesna@nl2k.ab.ca
DocumentRoot /usr/home/vesna/html/pryvit
ServerName pryvit.info
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/pryvit-error_log
CustomLog /var/log/httpd/pryvit-access_log combined
ScriptAlias /cgi-bin/ /usr/home/vesna/cgi-bin/
ServerAdmin master@nl2k.ab.ca
DocumentRoot /usr/home/master/html/
ServerName porthole.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/porthole-error_log
CustomLog /var/log/httpd/porthole-access_log combined
Options ExecCGI
Options ExecCGI
ScriptAlias /cgi-bin/ /usr/home/master/cgi-bin/
ServerAdmin naicken@nl2k.ab.ca
DocumentRoot /usr/home/vidya/html/
ServerName naicken.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/naicken-error_log
CustomLog /var/log/httpd/naicken-access_log combined
#
#
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attila-hypnotist.ca/
ServerName attila-hypnotist.ca
ErrorLog /var/log/httpd/attila-hypnotist-error_log
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/attila-hypnotist-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin helping@nl2k.ab.ca
DocumentRoot /usr/home/helping/html/
ServerName jaydeehypnotist.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/helpinghandhypnotherapy-access_log combined
ErrorLog /var/log/httpd/helpinghandhypnotherapy-error_log
ScriptAlias /cgi-bin/ /usr/home/helping/cgi-bin/
ServerAdmin mbarnes@nl2k.ab.ca
Redirect 301 / http://www.discountdining.ca/coupons/themill.htm
DocumentRoot /usr/home/mbarnes/html/
ServerName themillrestaurant.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/themillrestaurant-access_log combined
ErrorLog /var/log/httpd/themillrestaurant-error_log
ScriptAlias /cgi-bin/ /usr/home/mbarnes/cgi-bin/
ServerAdmin exposure@nl2k.ab.ca
DocumentRoot /usr/home/exposure/html/
ServerName promoteyourbusiness.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/promoteyourbusiness-access_log combined
ErrorLog /var/log/httpd/promoteyourbusiness-error_log
ScriptAlias /cgi-bin/ /usr/home/exposure/cgi-bin/
ServerAdmin doctor@nl2k.ab.ca
DocumentRoot /usr/home/regis/html
ServerName regisplazahotel.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/regisplazahotel-access_log combined
ErrorLog /var/log/httpd/regisplazahotel-error_log
ScriptAlias /cgi-bin/ /var/www/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnosiscourse.net/
ServerName stagehypnosiscourse.net
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stagehypnosiscourse.net-error_log
CustomLog /var/log/httpd/stagehypnosiscourse.net-access_log combined
Redirect 301 /~babies http://www.bosom-babies.com
ServerAdmin bjm@nl2k.ab.ca
DocumentRoot /usr/home/babies/html/
ServerName bosom-babies.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ "/usr/home/babies/cgi-bin/"
ErrorLog /var/log/httpd/bosombabies-error_log
CustomLog /var/log/httpd/bosombabies-access_log combined
ServerAdmin attilahypnotist@nl2k.ab.ca
DocumentRoot /usr/home/attilahypnotist/html/
ServerName attilahypnotist.com
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/attilahypnotist-error_log
CustomLog /var/log/httpd/attilahypnotist-access_log combined
ServerAdmin artist@nl2k.ab.ca
DocumentRoot /usr/home/family/html/
ServerName bolianatz.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/bolianatz-error_log
CustomLog /var/log/httpd/bolianatz-access_log combined
ServerAdmin root@nl2k.ab.ca
##DocumentRoot /usr/home/michaele/html/
Redirect 301 / http://207.34.125.100/
ServerName stalbertinn.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stalbertinn-error_log
CustomLog /var/log/httpd/stalbertinn-access_log combined
ScriptAlias /cgi-bin/ /usr/home/michaele/cgi-bin/
ServerAdmin snapt@nl2k.ab.ca
DocumentRoot /usr/home/snapt/html/
ServerName snaptband.com
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/snaptband-error_log
CustomLog /var/log/httpd/snaptband-access_log combined
ServerAdmin aboo@nl2k.ab.ca
DocumentRoot /usr/home/jhope/html/
ServerName velocity-resources.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorDocument 404 http://www.velocity-resources.com/
ErrorLog /var/log/httpd/greatcanadianmines-error_log
CustomLog /var/log/httpd/greatcanadianmines-access_log combined
ScriptAlias /cgi-bin/ /usr/home/jhope/cgi-bin/
ServerAdmin gilchrist@nl2k.ab.ca
DocumentRoot /usr/home/summitpl/html/
ServerName summitplacement.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/summitplacement-error_log
CustomLog /var/log/httpd/summitplacement-access_log combined
ScriptAlias /cgi-bin/ /usr/home/summitpl/cgi-bin/
###Place holder for summitplacement.ca
ServerAdmin remcoland@nl2k.ab.ca
DocumentRoot /usr/home/remcoland/html/
ServerName rangeroad.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/rangeroad-error_log
CustomLog /var/log/httpd/rangeraod-access_log combined
ScriptAlias /cgi-bin/ /usr/home/remcoland/cgi-bin/
ServerAdmin thezoo@nl2k.ab.ca
DocumentRoot /usr/home/thezoo/html/
ServerName thezoo2.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/thezoo2-error_log
CustomLog /var/log/httpd/thezoo2-access_log combined
ScriptAlias /cgi-bin/ /usr/home/thezoo/cgi-bin/
ServerAdmin ts@nl2k.ab.ca
DocumentRoot /usr/home/ts/html/
ServerName techsupplies.ca
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/techsupplies-error_log
CustomLog /var/log/httpd/techsupplies-access_log combined
ScriptAlias /cgi-bin/ /usr/home/ts/cgi-bin/
ServerAdmin lawracom@nl2k.ab.ca
DocumentRoot /usr/home/knattrass/html/
ServerName seedcentre.com
ErrorDocument 404 http://www.seedcentre.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/seedcentre-error_log
CustomLog /var/log/httpd/seedcentre-access_log combined
ScriptAlias /cgi-bin/ /usr/home/knattrass/cgi-bin/
ServerAdmin mbarnes@nl2k.ab.ca
DocumentRoot /usr/home/mbarnes/html/discountdining
ServerName discountdining.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/discountdining-error_log
CustomLog /var/log/httpd/discountdining-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mbarnes/cgi-bin/
ServerAdmin kentdn@gmail.com
DocumentRoot /usr/home/crystalcay/html/
ServerName crystalcaycondos.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/crystalcaycondos-error_log
CustomLog /var/log/httpd/crystalcaycondos-access_log combined
ScriptAlias /cgi-bin/ /usr/home/crystalcay/cgi-bin/
ServerAdmin attilahypnotist@nl2k.ab.ca
DocumentRoot /usr/home/attilahypnotist/html/all_sites/OTHERS/chameleonsworld.com/
ServerName chameleonsworld.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/chameleonsworld-error_log
CustomLog /var/log/httpd/chameleonsworld-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin maryannewardach@nl2k.ab.ca
DocumentRoot /usr/home/maryannewardach/html/
ServerName maryannewardach.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/maryannewardach-error_log
CustomLog /var/log/httpd/maryannewardach-access_log combined
ScriptAlias /cgi-bin/ /usr/home/maryannewardach/cgi-bin/
ServerAdmin mayfamilydent@nl2k.ab.ca
DocumentRoot /usr/home/mayfamilydent/html/
ServerName myfamilydentistry.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/mayfamilydentristry-error_log
CustomLog /var/log/httpd/mayfamilydentristry-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mayfamilydent/cgi-bin/
ServerAdmin synergy@nl2k.ab.ca
DocumentRoot /usr/home/synergy/html
ServerName synergymovement.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/synergymovement-error_log
CustomLog /var/log/httpd/synergymovement-access_log combined
ScriptAlias /cgi-bin/ /usr/home/synergy/cgi-bin/
ServerAdmin lawracom@nl2k.ab.ca
DocumentRoot /usr/home/billdickson/html
ServerName tailgunner-militaria.com
ErrorLog /var/log/httpd/tailgunner-militaria-error_log
###DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/tailgunner-militaria-access_log combined
ScriptAlias /cgi-bin/ /usr/home/billdickson/cgi-bin/
ServerAdmin california@nl2k.ab.ca
DocumentRoot /usr/home/california/html/
ServerName californiawallbeds.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/californiawallbeds-error_log
CustomLog /var/log/httpd/californiawallbeds-access_log combined
ScriptAlias /cgi-bin/ /usr/home/california/cgi-bin/
ServerAdmin mparish@nl2k.ab.ca
DocumentRoot /usr/home/mparish/html/
ServerName albertadogs.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/albertadogs-error_log
CustomLog /var/log/httpd/albertadogs-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mparish/cgi-bin/
ServerAdmin lawracom@nl2k.ab.ca
DocumentRoot /usr/home/rosslyn/html/
ServerName edmontonvet.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/edmontonvet-error_log
CustomLog /var/log/httpd/edmontonvet-access_log combined
ScriptAlias /_vti_bin/ /usr/local/frontpage/version4.0/_vti_bin/
ServerAdmin reservations@nl2k.ab.ca
DocumentRoot /usr/home/hjgm/html/
ServerName hojoedmonton.com
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/saxonyhotel-error_log
CustomLog /var/log/httpd/saxonyhotel-access_log combined
ScriptAlias /cgi-bin/ /usr/home/hjgm/html/
ScriptAlias /_vti_bin/ /usr/local/frontpage/version4.0/_vti_bin/
ServerAdmin valpy@nl2k.ab.ca
DocumentRoot /usr/home/john/AgricultureCanada.ca
ServerName agriculturecanada.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/agriculture-error_log
CustomLog /var/log/httpd/agriculture-access_log combined
ScriptAlias /cgi-bin/ /usr/home/john/html/
ScriptAlias /_vti_bin/ /usr/local/frontpage/version4.0/_vti_bin/
ServerAdmin mbarnes@nl2k.ab.ca
DocumentRoot /usr/home/mbarnes/html/
ServerName teamspecials.com
Redirect 301 / http://www.discountdining.ca/coupons/suntan.htm
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/teamspecials-error_log
CustomLog /var/log/httpd/teamspecials-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mbarnes/cgi-bin/
ServerAdmin ccm@nl2k.ab.ca
DocumentRoot /usr/home/ccm/html/
ServerName christschurch.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/christschurch-error_log
CustomLog /var/log/httpd/christschurch-access_log combined
ScriptAlias /cgi-bin/ /usr/home/ccm/cgi-bin/
ServerAdmin lawracom@nl2k.ab.ca
DocumentRoot /usr/home/aha/html/BeaverlodgeInn
ServerName beaverlodgemotorinn.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/beaverlodgemotorinn-error_log
CustomLog /var/log/httpd/beaverlodgemotorinn-access_log combined
ScriptAlias /cgi-bin/ /var/www/cgi-bin/
ServerAdmin lawracom@nl2k.ab.ca
DocumentRoot /usr/home/aboo/html/FortChip
ServerName fortchipewyan.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/fortchipewyanlodge-error_log
CustomLog /var/log/httpd/fortchipewyanlodge-access_log combined
ScriptAlias /Icons/ /usr/home/aboo/html/Icons/
ScriptAlias /cgi-bin/ /usr/home/aboo/cgi-bin/
ServerAdmin lasertech@nl2k.ab.ca
DocumentRoot /usr/home/lasertech/html/
ServerName lasertechhealth.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
ErrorLog /var/log/httpd/lasertechhealth-error_log
CustomLog /var/log/httpd/lasertechhealth-access_log combined
ScriptAlias /cgi-bin/ /usr/home/lasertech/cgi-bin/
ServerAdmin gawlaan@nl2k.ab.ca
DocumentRoot /usr/home/gawlaan/html/
ServerName lpeser.ca
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/lpesmallenginerepair-error_log
CustomLog /var/log/httpd/lpesmallenginerepair-access_log combined
ScriptAlias /cgi-bin/ /usr/home/gawlaan/cgi-bin/
ServerAdmin highlanddental@nl2k.ab.ca
DocumentRoot /usr/home/highlanddental/html/
ServerName highlanddentallab.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/highlanddentallab-error_log
CustomLog /var/log/httpd/highlanddentallab-access_log combined
ScriptAlias /cgi-bin/ /usr/home/highlanddental/cgi-bin/
ServerAdmin dholortho@nl2k.ab.ca
DocumentRoot /usr/home/dholortho/html/
ServerName dholorthodontics.com
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/dholorthodontics-error_log
CustomLog /var/log/httpd/dholorthodontics-access_log combined
ScriptAlias /cgi-bin/ /usr/home/dholortho/cgi-bin/
ServerAdmin attilahypnotist@nl2k.ab.ca
DocumentRoot /usr/home/attilahypnotist/html/stage-hypnosis-course.com/
ServerName stage-hypnosis-course.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stage-hypnosis-course-error_log
CustomLog /var/log/httpd/stage-hypnosis-course-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypotist/cgi-bin/
ServerAdmin wwoytkiw@nl2k.ab.ca
DocumentRoot /usr/home/wwoytkiw/html/
ServerName willwoytkiw.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/willwoytkiw-error_log
CustomLog /var/log/httpd/willwoytkiw-access_log combined
ScriptAlias /cgi-bin/ /usr/home/wwoytkiw/cgi-bin/
ServerAdmin kentdn@gmail.com
DocumentRoot /usr/home/dwell/html/
ServerName dwellmodern.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/dwellmodern-error_log
CustomLog /var/log/httpd/dwellmodern-access_log combined
ScriptAlias /cgi-bin/ /usr/home/dwell/cgi-bin/
ServerAdmin tsiworks@nl2k.ab.ca
DocumentRoot /usr/home/unityintegration/html/
ServerName unityintegration.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/unityintegration-error_log
CustomLog /var/log/httpd/unityintegration-access_log combined
ScriptAlias /cgi-bin/ /usr/home/unityintegration/cgi-bin/
ServerAdmin Secretary@Kiwanis-SouthEdmonton.ca
DocumentRoot /usr/home/safetycity/html/
ServerName kiwanissafetycity.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/kiwanissafetycity-error_log
CustomLog /var/log/httpd/kiwanissafetycity-access_log combined
ScriptAlias /cgi-bin/ /usr/home/dwell/cgi-bin/
ServerAdmin valpy@nl2k.ab.ca
DocumentRoot /usr/home/john/RecipeBook.ca
ServerName recipebook.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/recipebook-error_log
CustomLog /var/log/httpd/recipebook-access_log combined
Alias /cgi-bin/ /usr/home/john/cgi-bin/
ServerAdmin bjm@nl2k.ab.ca
DocumentRoot /usr/home/headstraight/html
ServerName headstraight.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/headstraight-error_log
CustomLog /var/log/httpd/headstraight-access_log combined
Alias /cgi-bin/ /usr/home/headstraight/cgi-bin/
ServerAdmin bjs@nl2k.ab.ca
DocumentRoot /usr/home/bjs/html/
ServerName bonnejourneestrategies.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/bonnejourneestrategies-error_log
CustomLog /var/log/httpd/bonnejourneestrategies-access_log combined
Alias /cgi-bin/ /usr/home/bjs/cgi-bin/
ServerAdmin eltc@nl2k.ab.ca
DocumentRoot /usr/home/john/Valpy.net/
ServerName valpy.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/valpy-error_log
CustomLog /var/log/httpd/valpy-access_log combined
ServerAdmin illusions@nl2k.ab.ca
DocumentRoot /usr/home/illusions/html/
ServerName illusionsphotograhic.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/illusionsphotographic-error_log
CustomLog /var/log/httpd/illusionsphotographic-access_log combined
ServerAdmin peterry@nl2k.ab.ca
DocumentRoot /usr/home/peterry/html/
ServerName hollyhockmeadows.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/hollyhockmeadows-error_log
CustomLog /var/log/httpd/hollyhockmeadows-access_log combined
ServerAdmin info@digitalcanvas-inc.com
DocumentRoot /usr/home/jeremyandrews/html/dc
ServerName digitalcanvas-inc.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/digitalcanvas-inc-error_log
CustomLog /var/log/httpd/digitalcanvas-inc-access_log combined
ServerAdmin vdrover@gpu.srv.ualberta.ca
DocumentRoot /usr/home/mmrladm/html/
ServerName mmrl.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
Alias /cgi-bin/ /usr/home/mmrladm/cgi-bin/
ErrorLog /var/log/httpd/mmrl-error_log
CustomLog /var/log/httpd/mmrl-access_log combined
ServerAdmin gkopchuk@nk.ca
DocumentRoot /usr/home/gkopchuk/
ServerName totalsalessolutions.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
Alias /cgi-bin/ /usr/home/gkopchuk/cgi-bin/
ErrorLog /var/log/httpd/totalsalessolutions-error_log
CustomLog /var/log/httpd/totalsalessolutions-access_log combined
ServerAdmin attilahypnotist@nl2k.ab.ca
DocumentRoot /usr/home/attilahypnotist/html/all_sites/OTHERS/pagodabed.com/
ServerName pagodabed.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/pagodabed-error_log
CustomLog /var/log/httpd/pagodabed-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin jeremyandrews@nl2k.ab.ca
DocumentRoot /usr/home/jeremyandrews/html/arbour/
ServerName arbourlakedental.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/arbourlakedental-error_log
CustomLog /var/log/httpd/arbourlakedental-access_log combined
ScriptAlias /cgi-bin/ /usr/home/jeremyandrews/cgi-bin/
ServerAdmin netlawr@nl2k.ab.ca
DocumentRoot /usr/home/netlawr/html/laser/
ServerName edmontonlasercentre.com
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/edmontonlasercentre-error_log
CustomLog /var/log/httpd/edmontonlasercentre-access_log combined
ServerAdmin attilahypnotist@nl2k.ab.ca
DocumentRoot /usr/home/attilahypnotist/html/all_sites/OTHERS/petsplacemat.com/
ServerName petsplacemat.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/petsplacemat-error_log
CustomLog /var/log/httpd/petsplacemat-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin bjm@bennaco.com
DocumentRoot /usr/home/telexperts/html/
ServerName telexperts.info
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorDocument 404 http://www.telexperts.info/
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
ErrorLog /var/log/httpd/telexperts-error_log
CustomLog /var/log/httpd/telexperts-access_log combined
ServerAdmin davidb@nl2k.ab.ca
DocumentRoot /usr/home/davidb/html/
ServerName zippclamp.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/zippclamp-error_log
CustomLog /var/log/httpd/zippclamp-access_log combined
Alias /cgi-bin/ /usr/home/davidb/cgi-bin/
ServerAdmin sinlesssweets@nl2k.ab.ca
DocumentRoot /usr/home/sinlesssweets/html/
ServerName sinless-sweets.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/sinless-sweets-error_log
CustomLog /var/log/httpd/sinless-sweets-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilahypnotist.ca/
ServerName attilahypnotist.ca
ErrorLog /var/log/httpd/attilahypnotist.ca-error_log
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/attilahypnotist.ca-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin tourdalberta@shaw.ca
DocumentRoot /usr/home/bikeclub/html/tda/
ServerName tourdalberta.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorDocument 404 http://www.tourdalberta.ca/
ErrorLog /var/log/httpd/tourdalberta-error_log
CustomLog /var/log/httpd/tourdalberta-access_log combined
ServerAdmin aboo@nl2k.ab.ca
DocumentRoot /usr/home/aboo/html/danbacks/
ServerName danbacks.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorDocument 404 http://www.danbacks.com/
ErrorLog /var/log/httpd/danbacks-error_log
CustomLog /var/log/httpd/danbacks-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attila-hypnotist.ws/
ServerName attila-hypnotist.ws
ErrorLog /var/log/httpd/attila-hypnotist.ws-error_log
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/attila-hypnotist.ws-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin mayfield@nl2k.ab.ca
DocumentRoot /usr/home/mayfield/html/
ServerName mayfieldnetwork.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/mayfieldnetwork-error_log
CustomLog /var/log/httpd/mayfieldnetwork-access_log combined
ServerAdmin doctor@nl2k.ab.ca
DocumentRoot /usr/home/doctor/html/capp/
ServerName comparealbertapoliticalparties.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/comparealbertapoliticalparties-error_log
CustomLog /var/log/httpd/comparealbertapoliticalparties-access_log combined
ServerAdmin beachside@nl2k.ab.ca
DocumentRoot /usr/home/beachside/html/
ServerName beachsidecorp.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/beachsidecorp-error_log
CustomLog /var/log/httpd/beachsidecorp-access_log combined
ServerAdmin bacadmin@nl2k.ab.ca
DocumentRoot /usr/home/bacadmin/html/
ServerName bacedmonton.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/bacedmonton-error_log
CustomLog /var/log/httpd/bacedmonton-access_log combined
ServerAdmin burchphoto@nl2k.ab.ca
DocumentRoot /usr/home/burchphoto/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName burchphoto.com
ErrorLog /var/log/httpd/burchphoto-error_log
CustomLog /var/log/httpd/burchphoto-access_log combined
ServerAdmin attilahyptonist@nl2k.ab.ca
DocumentRoot /usr/home/attilahypnotist/html/hypnotiqueproduction.com/
ServerName hypnotiqueproduction.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ErrorLog /var/log/httpd/hypnotiqueproduction-error_log
CustomLog /var/log/httpd/hypnotiqueproduction-access_log combined
ServerAdmin inkit@nl2k.ab.ca
DocumentRoot /usr/home/paintball/html/
ServerName paintballaction.net
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/paintballaction-error_log
CustomLog /var/log/httpd/paintballaction-access_log combined
ServerAdmin eltc@nl2k.ab.ca
DocumentRoot /usr/home/john/EnglishSchool.ca/
ServerName englishcanada.ca
ErrorDocument 404 http://www.englishschool.ca/
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/eltc-error_log
CustomLog /var/log/httpd/eltc-access_log combined
ScriptAlias /cgi-bin/ /usr/home/john/cgi-bin/
ServerAdmin webmaster@donayers.com
DocumentRoot /usr/home/tuffayers/html/
ServerName donayers.com
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/donayers-error_log
CustomLog /var/log/httpd/donayers-access_log combined
ServerAdmin bezko@nl2k.ab.ca
DocumentRoot /usr/home/bezko/html/
ServerName bezko.org
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/bezko-error_log
CustomLog /var/log/httpd/bezko-access_log combined
ScriptAlias /cgi-bin/ /usr/home/bezko/cgi-bin/
ServerAdmin midn@nl2k.ab.ca
DocumentRoot /usr/home/midn/html/
ServerName midnitetowing.com
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/midnitetowing-error_log
CustomLog /var/log/httpd/midnitetowing-access_log combined
ScriptAlias /cgi-bin/ /usr/home/midn/cgi-bin/
ServerAdmin descon@nl2k.ab.ca
DocumentRoot /usr/home/descon/html/
ServerName descon.ab.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
ErrorLog /var/log/httpd/descon-error_log
CustomLog /var/log/httpd/descon-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnotistclass.com/
ServerName stagehypnotistclass.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stagehypnotistclass.com-error_log
CustomLog /var/log/httpd/stagehypnotistclass.com-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnotistclass.org/
ServerName stagehypnotistclass.org
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stagehypnotistclass.org-error_log
CustomLog /var/log/httpd/stagehypnotistclass.org-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnotistcourse.com/
ServerName stagehypnotistcourse.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stagehypnotistcourse.com-error_log
CustomLog /var/log/httpd/stagehypnotistcourse.com-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnotistcourse.mobi/
ServerName stagehypnotistcourse.mobi
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stagehypnotistcourse.mobi-error_log
CustomLog /var/log/httpd/stagehypnotistcourse.mobi-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnotistcourse.net/
ServerName stagehypnotistcourse.net
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stagehypnotistcourse.net-error_log
CustomLog /var/log/httpd/stagehypnotistcourse.net-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnotistcourse.org/
ServerName stagehypnotistcourse.org
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stagehypnotistcourse.org-error_log
CustomLog /var/log/httpd/stagehypnotistcourse.org-access_log combined
NameVirtualHost 204.209.81.221
ServerAdmin loi@nl2k.ab.ca
DocumentRoot /usr/home/loi/html/
ServerName therussiantearoom.ca
ErrorLog /var/log/httpd/therussiantearoom-error_log
CustomLog /var/log/httpd/therussiantearoom-access_log combined
ServerAdmin rovingchessnuts@nl2k.ab.ca
DocumentRoot /usr/home/rovingchessnuts/html/
ServerName rovingchessnuts.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
ErrorLog /var/log/httpd/rovingchessnuts-error_log
CustomLog /var/log/httpd/rovingchessnuts-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/OTHERS/therainbowbridge.info/
ServerName therainbowbridge.info
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/therainbowbridge-error_log
CustomLog /var/log/httpd/therainbowbridge-access_log combined
ServerAdmin summit@nl2k.ab.ca
DocumentRoot /usr/home/summit/html/westernmontana/
ServerName westernmontana.info
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/westernmontana-error_log
CustomLog /var/log/httpd/westernmontana-access_log combined
ServerAdmin mbarnes@nl2k.ab.ca
DocumentRoot /usr/home/mbarnes/html/discountdining/honestmurs/
ServerName honestmurs.com
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/honestmurs-error_log
CustomLog /var/log/httpd/honestmurs-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attila-hypnotist.net/
ServerName attila-hypnotist.net
ErrorLog /var/log/httpd/attila-hypnotist.net-error_log
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/attila-hypnotist.net-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin mbarnes@nk.ca
DocumentRoot /usr/home/mbarnes/html/buffetroyale/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName buffetroyale.com
ErrorLog /var/log/httpd/buffetroyale-error_log
CustomLog /var/log/httpd/buffetroyale-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mbarnes/cgi-bin/
ServerAdmin chinookgrowntree@nl2k.ab.ca
DocumentRoot /usr/home/chinookgrowntree/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName chinookgrowntrees.com
ErrorLog /var/log/httpd/chinookgrowntrees-error_log
CustomLog /var/log/httpd/chinookgrowntrees-access_log combined
ServerAdmin scott@nl2k.ab.ca
DocumentRoot /usr/home/scott/html/
ServerName tmgdatasystems.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/tmgdatasystems-error_log
CustomLog /var/log/httpd/tmgdatasystems-access_log combined
ServerAdmin blayton@nl2k.ab.ca
DocumentRoot /usr/home/blayton/html/
ServerName recycleresources.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/recycleresources-error_log
CustomLog /var/log/httpd/recycleresources-access_log combined
ScriptAlias /cgi-bin/ /usr/home/blayton/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnosiscourse.net/
ServerName stagehypnosiscourse.net
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stagehypnosiscourse.net-error_log
CustomLog /var/log/httpd/stagehypnosiscourse.net-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin creefirstnation@nl2k.ab.ca
DocumentRoot /usr/home/creefirstnation/html/
ServerName clcfn.sk.ca
DirectoryIndex index.phtml index.php index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/clcfn-error_log
CustomLog /var/log/httpd/clcfn-access_log combined
ScriptAlias /cgi-bin/ /usr/home/creefirstnation/cgi-bin/
ServerAdmin slaporte@nk.ca
DocumentRoot /usr/home/slaporte/html/
ServerName perfectfuturesales.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/perfectfuturesales-error_log
CustomLog /var/log/httpd/perfectfuturesales-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attila-hypnotist.name/
ServerName attila-hypnotist.name
ErrorLog /var/log/httpd/attila-hypnotist.name-error_log
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/attila-hypnotist.name-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin colin@nl2k.ab.ca
DocumentRoot /usr/home/george/html/
ServerName prolinesales.com
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/prolinesales-error_log
CustomLog /var/log/httpd/prolinesales-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attila-hypnotist.com/
ServerName attila-hypnotist.com
ErrorLog /var/log/httpd/attila-hypnotist.com-error_log
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/attila-hypnotist.com-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin proskate@nl2k.ab.ca
DocumentRoot /usr/home/proskate/html/
ServerName professionalskate.ca
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/proskate-error_log
CustomLog /var/log/httpd/proskate-access_log combined
ServerAdmin vanmoe@nl2k.ab.ca
DocumentRoot /usr/home/vanmoe/html/
ServerName evanbly.com
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/evanbly-error_log
CustomLog /var/log/httpd/evanbly-access_log combined
ServerAdmin doctor@nl2k.ab.ca
DocumentRoot /usr/home/doctor/html/cce/
ServerName canadianclubofedmonton.org
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/canadianclubofedmonton-error_log
CustomLog /var/log/httpd/canadianclubofedmonton-access_log combined
ServerAdmin lawracom@nl2k.ab.ca
DocumentRoot /usr/home/success/html/
ServerName success-and-more.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/sam-error_log
CustomLog /var/log/httpd/sam-access_log combined
ServerAdmin jason.g.morris@gmail.com
DocumentRoot /usr/home/espliberals/html/
ServerName espliberals.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/espliberals-error_log
CustomLog /var/log/httpd/espliberals-access_log combined
ScriptAlias /cgi-bin/ /usr/home/espliberals/cgi-bin/
ServerAdmin stefan@nl2k.ab.ca
DocumentRoot /usr/home/stefan/html/
ServerName stefanmelnychenko.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stefanmelnychenko-error_log
CustomLog /var/log/httpd/stefanmelnychenko-access_log combined
ScriptAlias /cgi-bin/ /usr/home/stefan/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attila-hypnotist.biz/
ServerName attila-hypnotist.biz
ErrorLog /var/log/httpd/attila-hypnotist.biz-error_log
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/attila-hypnotist.biz-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin midwest@nl2k.ab.ca
DocumentRoot /usr/home/midwest/html/
ServerName midwest.ab.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/midwest-error_log
CustomLog /var/log/httpd/midwest-access_log combined
ServerAdmin pcs@nl2k.ab.ca
DocumentRoot /usr/home/pcs/html/
ServerName pcs.ab.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/pcs-error_log
CustomLog /var/log/httpd/pcs-access_log combined
ServerAdmin brando@nl2k.ab.ca
DocumentRoot /usr/home/brando/html/
ServerName brando.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/brando-error_log
CustomLog /var/log/httpd/brando-access_log combined
ServerAdmin precision@nl2k.ab.ca
DocumentRoot /usr/home/precision/html/
ServerName precisionceramics.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/precision-error_log
CustomLog /var/log/httpd/precision-access_log combined
ServerAdmin ips2@nl2k.ab.ca
DocumentRoot /usr/home/ips/html/
ServerName aimsfc.com
Options Indexes FollowSymLinks Includes SymLinksifOwnerMatch ExecCGI MultiViews
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorDocument 404 http://www.aimsfc.com/
ErrorLog /var/log/httpd/aimsfc-error_log
CustomLog /var/log/httpd/aimsfc-access_log combined
Alias /cgi-bin/ /usr/home/ips/cgi-bin/
ServerAdmin aboo@nl2k.ab.ca
DocumentRoot /usr/home/continentalinn/html/
ServerName continentalinn.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ReDirect 301 /reservations.htm https://www.innwebrez.com/webrez/continentalinn/
ErrorLog /var/log/httpd/continentalinn-error_log
CustomLog /var/log/httpd/continentalinn-access_log combined
ScriptAlias /cgi-bin/ /var/www/cgi-bin/
ServerAdmin roadrunner@nl2k.ab.ca
DocumentRoot /usr/home/roadrunner/html/
ServerName roadrunnersequipment.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/roadrunnersequipment-error_log
CustomLog /var/log/httpd/raodrunnersequipment-access_log combined
ScriptAlias /cgi-bin/ /usr/home/roadrunner/cgi-bin/
ServerAdmin valnchris@nl2k.ab.ca
DocumentRoot /usr/home/valnchris/html/
ServerName rmissionawareness.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/rmissionawareness-error_log
CustomLog /var/log/httpd/rmissionawareness-access_log combined
ScriptAlias /cgi-bin/ /usr/home/valnchris/cgi-bin/
ServerAdmin ammoliteacres@nl2k.ab.ca
DocumentRoot /usr/home/ammoliteacres/html/
ServerName ammoliteacres.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/ammoliteacres-error_log
CustomLog /var/log/httpd/ammoliteacres-access_log combined
ScriptAlias /cgi-bin/ /usr/home/ammoliteacres/cgi-bin/
ServerAdmin comicmouth@nl2k.ab.ca
DocumentRoot /usr/home/comicmouth/html/
ServerName comicmouth.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/comicmouth-error_log
CustomLog /var/log/httpd/comicmouth-access_log combined
ScriptAlias /cgi-bin/ /usr/home/comicmouth/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/SHOWS4UCA/shows4uca.us/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName shows4uca.us
ErrorLog /var/log/httpd/shows4uca.us-error_log
CustomLog /var/log/httpd/shows4uca.us-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilahypnotist.biz/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName attilahypnotist.biz
UseCanonicalName DNS
ErrorLog /var/log/httpd/attilahypnotist.biz-error_log
CustomLog /var/log/httpd/attilahypnotist.biz-access_log combined
ServerAdmin lewisest@nl2k.ab.ca
DocumentRoot /usr/home/lewisest/html/
ServerName lewisestates.org
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/lewisestates-error_log
CustomLog /var/log/httpd/lewisestates-access_log combined
ScriptAlias /cgi-bin/ /usr/home/lewisest/cgi-bin/
ServerAdmin derm@nl2k.ab.ca
DocumentRoot /usr/home/derm/html/
ServerName dermlaser.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/dermlaser-error_log
CustomLog /var/log/httpd/dermlaser-access_log combined
ScriptAlias /cgi-bin/ /usr/home/derm/cgi-bin/
ServerAdmin atillahypnotist@nl2k.ab.ca
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnosistraining.net/
ServerName stagehypnosistraining.net
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stagehypnosistraining.net-error_log
CustomLog /var/log/httpd/stagehypnosistraining.net-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin exposure@nl2k.ab.ca
DocumentRoot /usr/home/exposure/html/fairmont/
ServerName fairmontelectroplating.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/fairmontelectropating-error_log
CustomLog /var/log/httpd/fairmontelectropating-access_log combined
ScriptAlias /cgi-bin/ /usr/home/exposure/cgi-bin/
ServerAdmin rrc22@nl2k.ab.ca
DocumentRoot /usr/home/rrc22/html/
ServerName rrcsa.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/rrcsa-error_log
CustomLog /var/log/httpd/rrcsa-access_log combined
ScriptAlias /cgi-bin/ /usr/home/rrc22/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attila-hypnotist.org/
ServerName attila-hypnotist.org
ErrorLog /var/log/httpd/attila-hypnotist.org-error_log
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/attila-hypnotist.org-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilahypnotist.net/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName attilahypnotist.net
UseCanonicalName DNS
ErrorLog /var/log/httpd/attilahypnotist.net-error_log
CustomLog /var/log/httpd/attilahypnotist.net-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin summit@nl2k.ab.ca
DocumentRoot /usr/home/summit/html/summit-solutions-ltd/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName summit-solutions-ltd.com
ErrorLog /var/log/httpd/summit-solutions-ltd-error_log
CustomLog /var/log/httpd/summit-solutions-ltd-access_log combined
ScriptAlias /cgi-bin/ /usr/home/summit/cgi-bin/
ServerAdmin summit@nl2k.ab.ca
DocumentRoot /usr/home/summit/html/virtualtruckroute/
ServerName virtualtruckroute.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/virtualtruckroute-error_log
CustomLog /var/log/httpd/virtualtruckroute-access_log combined
ScriptAlias /cgi-bin/ /usr/home/summit/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/officialattila.com/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName officialattila.com
UseCanonicalName DNS
ErrorLog /var/log/httpd/officialattila.com-error_log
CustomLog /var/log/httpd/officialattila.com-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnosiscourse.org/
ServerName stagehypnosiscourse.org
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stagehypnosiscourse.org-error_log
CustomLog /var/log/httpd/stagehypnosiscourse.org-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnosiscourse.info/
ServerName stagehypnosiscourse.info
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stagehypnosiscourse.info-error_log
CustomLog /var/log/httpd/stagehypnosiscourse.info-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin lawracom@nl2k.ab.ca
DocumentRoot /usr/home/aha/html/
Redirect /AthabascaInn http://www.bestwestern.com/ca/athabascainn
Redirect /AthabascaHotel http://www.explorealberta.com
Redirect /Heidelberg http://www.bestwestern.com/ca/heidelberg
Redirect /cedarparkinn http://www.cedarparkinn.com
Redirect /chateaulouis http://www.chateaulouis.com
Redirect /DenhamInn http://www.explorealberta.com
Redirect /DrumhellerInn http://www.explorealberta.com
Redirect /HotelMacdonald http://www.cphotels.ca
Redirect /KananaskisInn http://www.kananaskisinn.com
Redirect /Safety http://www.albertahotels.ab.ca/ahsa
Redirect /bluelakelodge http://www.bluelakelodge.com
Redirect /ElbowRiver http://www.casino-hotel.com
Redirect /FortChip http://www.fortchipewyanlodge.com
Redirect /HospitalityInn http://www.explorealberta.com
Redirect /PointeInn http://www.explorealberta.com
Redirect /Ramada http://www.explorealberta.com
Redirect /StonyMotorInn http://www.explorealberta.com
Redirect /StonyPlain http://www.explorealberta.com
Redirect /Travellers http://www.travellershotel.com
Redirect /Trumpeter http://www.explorealberta.com
Redirect /VaiilagePark http://www.explorealberta.com
Redirect /WalkingEagle http://www.explorealberta.com
Redirect /WaysideInn http://www.bestwesternwaysideinn.com
ServerName ahla.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorDocument 404 http://www.ahla.ca/
ErrorLog /var/log/httpd/albertahotels-error_log
CustomLog /var/log/httpd/albertahotels-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
Order allow,deny
Allow from all
ServerAdmin doctor@nl2k.ab.ca
DocumentRoot /usr/home/ricky/html/
ServerName cardiovascular.ab.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/cardiovascular-error_log
CustomLog /var/log/httpd/cardiovascular-access_log combined
ScriptAlias /cgi-bin/ /usr/home/ricky/cgi-bin/
ServerAdmin lawracom@nl2k.ab.ca
DocumentRoot /usr/home/ctm/html/
ServerName chambertoastmasters.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/chambertoastmasters-error_log
CustomLog /var/log/httpd/chambertoastmasters-access_log combined
ScriptAlias /cgi-bin/ /usr/home/ctm/cgi-bin/
AllowOverRide All
ServerAdmin nyssa@nl2k.ab.ca
DocumentRoot /usr/home/nyssa/html/
ServerName cromwellconsulting.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/cromwellconsulting-error_log
CustomLog /var/log/httpd/cromwellconsulting-access_log combined
ScriptAlias /cgi-bin/ /usr/home/nyssa/cgi-bin/
##
##
ServerAdmin jdacyshyn06@nl2k.ab.ca
DocumentRoot /usr/home/jdacyshyn06/html/
ServerName albertanaturopath.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/albertanaturopath-error_log
CustomLog /var/log/httpd/albertanaturopath-access_log combined
ScriptAlias /cgi-bin/ /usr/home/jdacyshyn06/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnosiscourse.biz/
ServerName stagehypnosiscourse.biz
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/stagehypnosiscourse.biz-error_log
CustomLog /var/log/httpd/stagehypnosiscourse.biz-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin mbarnes@nl2k.ab.ca
DocumentRoot /usr/home/mbarnes/html/tonys/
ServerName tonyspizzapalace.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/tonyspizzapalace-error_log
CustomLog /var/log/httpd/tonyspizzapalace-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mbarnes/cgi-bin/
ServerAdmin atillahypnotist@nl2k.ab.ca
DocumentRoot /usr/home/attilahypnotist/html/shows4u.ca/
ServerName shows4u.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/shows4u-error_log
CustomLog /var/log/httpd/shows4u-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/OTHERS/termegkft.com/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName termegkft.com.
ErrorLog /var/log/httpd/termegkft.com-error_log
CustomLog /var/log/httpd/termegkft.com-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin jmacdon1@nl2k.ab.ca
DocumentRoot /usr/home/jmacdon1/html/
ServerName bellwethersmessage.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/bellwethersmessage-error_log
CustomLog /var/log/httpd/bellwethersmessage-access_log combined
ScriptAlias /cgi-bin/ /usr/home/jmacdon1/cgi-bin/
ServerAdmin lawracom@nl2k.ab.ca
SuexecUserGroup "#359" "#100"
Options Indexes IncludesNOEXEC FollowSymLinks
DocumentRoot /usr/home/bwwis/html/
ServerName bwwis.com
ServerAlias www.bwwis.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/bestwesternwaysideinn-error_log
CustomLog /var/log/httpd/bestwesternwaysideinn-access_log combined
ScriptAlias /cgi-bin/ /usr/home/bwwis/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/SHOWS4UCA/shows4u.info/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName shows4u.info
ErrorLog /var/log/httpd/shows4u.info-error_log
CustomLog /var/log/httpd/shows4u.info-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/SHOWS4UCA/shows4u.net/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName shows4u.net
ErrorLog /var/log/httpd/shows4u.net-error_log
CustomLog /var/log/httpd/shows4u.net-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin brent@nl2k.ab.ca
DocumentRoot /usr/home/brent/html/
ServerName yournet.ca
ScriptAlias /cgi-bin/ /usr/home/brent/cgi-bin/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/yournet-error_log
CustomLog /var/log/httpd/yournet-access_log combined
ServerAdmin exposure@nl2k.ab.ca
DocumentRoot /usr/home/exposure/html/princecharles/
ServerName princecharles.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
CustomLog /var/log/httpd/princecharles-access_log combined
ErrorLog /var/log/httpd/princecharles-error_log
ScriptAlias /cgi-bin/ /usr/home/exposure/cgi-bin/
ServerAdmin mbarnes@nl2k.ab.ca
DocumentRoot /usr/home/mbarnes/html/
ServerName wooly-bullys.com
Redirect / http://www.discountdining.ca/coupons/woolybullys.htm
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/mbarnes/cgi-bin/
ErrorLog /var/log/httpd/wooly-bullys-error_log
CustomLog /var/log/httpd/wooly-bullys-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/SHOWS4UCA/shows4u.org/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName shows4u.org
ErrorLog /var/log/httpd/shows4u.org-error_log
CustomLog /var/log/httpd/shows4u.org-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/SHOWS4UCA/shows4u.us/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName shows4u.us
ErrorLog /var/log/httpd/shows4u.us-error_log
CustomLog /var/log/httpd/shows4u.us-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin hicksonsix@nl2k.ab.ca
DocumentRoot /usr/home/hicksonsix/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName hicksonsix.com
ScriptAlias /cgi-bin/ /usr/home/hicksonsix/cgi-bin/
ErrorLog /var/log/httpd/hicksonsix-error_log
CustomLog /var/log/httpd/hicksonsix-access_log combined
ServerAdmin gee@nl2k.ab.ca
DocumentRoot /usr/home/gee/html/
ServerName geeandgeeracing.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/gee/cgi-bin/
ErrorLog /var/log/httpd/geeandgeeracing-error_log
CustomLog /var/log/httpd/geeandgeeracing-access_log combined
ServerAdmin cariwest@nl2k.ab.ca
DocumentRoot /usr/home/cariwest/html/
ServerName cariwestfestival.com
DirectoryIndex index.phtml index.php index.php3 index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/cariwest/cgi-bin/
ErrorLog /var/log/httpd/cariwestfestival-error_log
CustomLog /var/log/httpd/cariwestfestival-access_log combined
ServerAdmin michelle@tsiworks.com
DocumentRoot /usr/home/sbmagic/html/
ServerName scrapbookmagic.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/sbmagic/cgi-bin/
ErrorLog /var/log/httpd/scrapbookmagic-error_log
CustomLog /var/log/httpd/scrapbookmagic-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/SHOWS4UCA/shows4uca.com/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName shows4uca.com
ErrorLog /var/log/httpd/shows4uca.com-error_log
CustomLog /var/log/httpd/shows4uca.com-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnotistcourse.us/
ServerName stagehypnotistcourse.us
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ErrorLog /var/log/httpd/stagehypnotistcourse.us-error_log
CustomLog /var/log/httpd/stagehypnotistcourse.us-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnotistcourse.info/
ServerName stagehypnotistcourse.info
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ErrorLog /var/log/httpd/stagehypnotistcourse.info-error_log
CustomLog /var/log/httpd/stagehypnotistcourse.info-access_log combined
ServerAdmin exposure@nl2k.ab.ca
DocumentRoot /usr/home/exposure/html/angelcart/
ServerName angelcart.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/exposure/cgi-bin/
ErrorLog /var/log/httpd/angelcart-error_log
CustomLog /var/log/httpd/angelcart-access_log combined
ServerAdmin aboo@nl2k.ab.ca
DocumentRoot /usr/home/healthzone/html/
ServerName myhealthysolutions.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/healthzone/cgi-bin/
ErrorLog /var/log/httpd/myhealthysolutions-error_log
CustomLog /var/log/httpd/myhealthysolutions-access_log combined
ServerAdmin tamie@nl2k.ab.ca
DocumentRoot /usr/home/actsrespect/html/
ServerName actsociety.ca
DirectoryIndex index.html index.phtml index.php index.php3 index.cgi index.pl index.shtml index.htm
ScriptAlias /cgi-bin/ /usr/home/actsrespect/cgi-bin/
ErrorLog /var/log/httpd/actsoceity-error_log
CustomLog /var/log/httpd/actsociety-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnosistraining.org
ServerName stagehypnosistraining.org
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ErrorLog /var/log/httpd/stagehypnosistraining.org-error_log
CustomLog /var/log/httpd/stagehypnosistraining.org-access_log combined
ServerAdmin vesna@nl2k.ab.ca
DocumentRoot /usr/home/vesna/html/
ServerName ukrainian-philately.info
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/vesna/cgi-bin/
ErrorLog /var/log/httpd/ukrainian-philately-error_log
CustomLog /var/log/httpd/ukrainian-philately-access_log combined
ServerAdmin steepl@nl2k.ab.ca
DocumentRoot /usr/home/steepl/html/
ServerName steeplechaser.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/steepl/cgi-bin/
ErrorLog /var/log/httpd/steeplechaser-error_log
CustomLog /var/log/httpd/steeplechaser-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilahypnotist.ca/
ServerName attilahypnotist.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ErrorLog /var/log/httpd/attilahypnotist.ca-error_log
CustomLog /var/log/httpd/attilahypnotist.ca-access_log combined
ServerAdmin adelemj@telusplanet.net
DocumentRoot /usr/home/adelemj/html/
ServerName adelejohnson.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/adelemj/cgi-bin/
ErrorLog /var/log/httpd/adelejohnson-error_log
CustomLog /var/log/httpd/adelejohnson-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnosistraining.biz
ServerName stagehypnosistraining.biz
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ErrorLog /var/log/httpd/stagehypnosistraining.biz-error_log
CustomLog /var/log/httpd/stagehypnosistraining.biz-access_log combined
ServerAdmin exposure@nl2k.ab.ca
DocumentRoot /usr/home/exposure/html/
ServerName promoteyourbusiness.ca
ScriptAlias /cgi-bin/ /usr/home/exposure/cgi-bin/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ErrorLog /var/log/httpd/promoteyourbusiness-error_log
CustomLog /var/log/httpd/promoteyourbusiness-access_log combined
ServerAdmin saaiicanada@nl2k.ab.ca
DocumentRoot /usr/home/saaiicanada/html/
ServerName saaiicanada.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/saaiicanada/cgi-bin/
ErrorLog /var/log/httpd/saaiicanada-error_log
CustomLog /var/log/httpd/saaiicanada-access_log combined
ServerAdmin bhope@madison.ca
DocumentRoot /usr/home/saintcity/html/
ServerName saintcitynews.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/saintcity/cgi-bin/
ErrorLog /var/log/httpd/saintcitynews-error_log
CustomLog /var/log/httpd/saintcitynews-access_log combined
ServerAdmin bhbrinkmann@nl2k.ab.ca
DocumentRoot /usr/home/bhbrinkmann/html/
ServerName brinkmann.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/bhbrinkmann/cgi-bin/
ErrorLog /var/log/httpd/brinkmann-error_log
CustomLog /var/log/httpd/brinkmann-access_log combined
ServerAdmin ktinfo@nl2k.ab.ca
DocumentRoot /usr/home/ktinfo/html/
ServerName kingtiger.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ScriptAlias /cgi-bin/ /usr/home/ktinfo/cgi-bin/
ErrorLog /var/log/httpd/kingtiger-error_log
CustomLog /var/log/httpd/kingtiger-access_log combined
ServerName realconnections.ca
ReDirect 301 / http://www.connectingrealpeople.com/
ServerAdmin summit@nl2k.ab.ca
DocumentRoot /usr/home/summit/html/acachockey/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName acachockey.info
ErrorLog /var/log/httpd/acachockey-error_log
CustomLog /var/log/httpd/acachockey-access_log combined
ScriptAlias /cgi-bin/ /usr/home/summit/cgi-bin/
ServerAdmin stphils@nl2k.ab.ca
DocumentRoot /usr/home/stphils/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName stphilipchurch.ca
ErrorLog /var/log/httpd/stphilipchurch-error_log
CustomLog /var/log/httpd/stphilipchurch-access_log combined
ScriptAlias /cgi-bin/ /usr/home/stphils/cgi-bin/
ServerAdmin sweettweet@nl2k.ab.ca
DocumentRoot /usr/home/sweettweet/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName sweettweet.ca
ErrorLog /var/log/httpd/sweettweet-error_log
CustomLog /var/log/httpd/sweettweet-access_log combined
ScriptAlias /cgi-bin/ /usr/home/sweettweet/cgi-bin/
ServerAdmin jaydee@nl2k.ab.ca
DocumentRoot /usr/home/jaydee/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName jaydeehypnotist.net
ErrorLog /var/log/httpd/jaydeehypnotist.net-error_log
CustomLog /var/log/httpd/jaydeehypnotist.net-access_log combined
ScriptAlias /cgi-bin/ /usr/home/jaydee/cgi-bin/
ServerAdmin classic2007@nl2k.ab.ca
DocumentRoot /usr/home/classic2007/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName classicwindowfashions.ca
ErrorLog /var/log/httpd/classicwindowfashions-error_log
CustomLog /var/log/httpd/classicwindowfashions-access_log combined
ScriptAlias /cgi-bin/ /usr/home/classic2007/cgi-bin/
ServerAdmin oilcapital@nl2k.ab.ca
DocumentRoot /usr/home/oilcapital/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName oilcapitalkiwanis.com
ErrorLog /var/log/httpd/oilcapitalkiwanis-error_log
CustomLog /var/log/httpd/oilcapitalkiwanis-access_log combined
ScriptAlias /cgi-bin/ /usr/home/oilcapital/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilakun.biz/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName attilahypnotist.biz
UseCanonicalName DNS
ErrorLog /var/log/httpd/attilakun.biz-error_log
CustomLog /var/log/httpd/attilakun.biz-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilakun.com/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName attilahypnotist.com
UseCanonicalName DNS
ErrorLog /var/log/httpd/attilakun.com-error_log
CustomLog /var/log/httpd/attilakun.com-access_log combined
ServerAdmin kachina@nl2k.ab.ca
DocumentRoot /usr/home/kachina/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName kachinasappaloosas.com
ErrorLog /var/log/httpd/kachinasappaloosas-error_log
CustomLog /var/log/httpd/kachinasappaloosas-access_log combined
ScriptAlias /cgi-bin/ /usr/home/kachina/cgi-bin/
ServerAdmin john@nk.ca
DocumentRoot /usr/home/john/Valpy.net/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName valpy.net
ErrorDocument 404 http://www.valpy.net/
ErrorLog /var/log/httpd/valpy-error_log
CustomLog /var/log/httpd/valpy-access_log combined
ScriptAlias /cgi-bin/ /usr/home/john/cgi-bin/
ServerAdmin lawracom@nl2k.ab.ca
DocumentRoot /usr/home/netlawr/html/ath-lodge-motel
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName athabascalodgemotel.com
ErrorLog /var/log/httpd/athabascalodgemotel-error_log
CustomLog /var/log/httpd/athabascalodgemotel-access_log combined
ScriptAlias /cgi-bin/ /usr/home/netlawr/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilahypnotist.info/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName attilahypnotist.info
UseCanonicalName DNS
ErrorLog /var/log/httpd/attilahypnotist.info-error_log
CustomLog /var/log/httpd/attilahypnotist.info-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilakun.info/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName attilakun.info
UseCanonicalName DNS
ErrorLog /var/log/httpd/attilakun.info-error_log
CustomLog /var/log/httpd/attilakun.info-access_log combined
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilakun.net/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName attilahypnotist.net
UseCanonicalName DNS
ErrorLog /var/log/httpd/attilakun.net-error_log
CustomLog /var/log/httpd/attilakun.net-access_log combined
ServerAdmin eagleins@nl2k.ab.ca
DocumentRoot /usr/home/eagleins/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName eagle-ins.com
ErrorLog /var/log/httpd/eagle-ins-error_log
CustomLog /var/log/httpd/eagle-ins-access_log combined
ScriptAlias /cgi-bin/ /usr/home/eagleins/cgi-bin/
ServerAdmin joeiron@nk.ca
DocumentRoot /usr/home/meadowlake/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName mlfn.ca
ErrorLog /var/log/httpd/mlfn-error_log
CustomLog /var/log/httpd/mlfn-access_log combined
ScriptAlias /cgi-bin/ /usr/home/meadowlake/cgi-bin/
ServerAdmin johnstonsafety@nk.ca
DocumentRoot /usr/home/johnstonsafety/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName johnstonsafety.com
ErrorLog /var/log/httpd/johnstonsafety-error_log
CustomLog /var/log/httpd/johnstonsafety-access_log combined
ScriptAlias /cgi-bin/ /usr/home/infosp/cgi-bin/
ServerAdmin fulltime@nk.ca
DocumentRoot /usr/home/fulltime/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName fulltimeshopping.com
ErrorLog /var/log/httpd/fulltimeshopping-error_log
CustomLog /var/log/httpd/fulltimeshopping-access_log combined
ScriptAlias /cgi-bin/ /usr/home/fulltime/cgi-bin/
AllowOverRide All
ServerAdmin kparish@nk.ca
DocumentRoot /usr/home/aha/html/ABReservations/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName albertareservations.com
ErrorLog /var/log/httpd/albertareservations-error_log
CustomLog /var/log/httpd/albertareservations-access_log combined
ScriptAlias /cgi-bin/ /usr/home/aha/cgi-bin/
ServerAdmin valpy@eltc.com
DocumentRoot /usr/home/john/Hot-Rods.ca/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName hot-rods.ca
ErrorLog /var/log/httpd/hot-rods-error_log
CustomLog /var/log/httpd/hot-rods-access_log combined
ScriptAlias /cgi-bin/ /usr/home/eltc/cgi-bin/
ServerAdmin sekiwanise@nk.ca
DocumentRoot /usr/home/sekiwanis/html
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName kiwanis-southedmonton.ca
ErrorLog /var/log/httpd/kiwanis-southedmonton-error_log
CustomLog /var/log/httpd/kiwanis-southedmonton-access_log combined
ScriptAlias /cgi-bin/ /usr/home/sekiwanis/cgi-bin/
ServerAdmin froglake@nk.ca
DocumentRoot /usr/home/froglake/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName froglakeoilfieldservices.ab.ca
ErrorLog /var/log/httpd/froglakeoilfieldservices-error_log
CustomLog /var/log/httpd/froglakeoilfieldservices-access_log combined
ScriptAlias /cgi-bin/ /usr/home/froglake/cgi-bin/
ServerAdmin dcs@nk.ca
DocumentRoot /usr/home/alaska/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName create.ab.ca
ErrorLog /var/log/httpd/create-error_log
CustomLog /var/log/httpd/create-access_log combined
ScriptAlias /cgi-bin/ /usr/home/alaska/cgi-bin/
ServerAdmin aboo@nk.ca
DocumentRoot /usr/home/aboo/html/diesel/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName diesel-power.ca
ErrorLog /var/log/httpd/diesel-power-error_log
CustomLog /var/log/httpd/diesel-power-access_log combined
ScriptAlias /cgi-bin/ /var/www/cgi-bin/
ServerAdmin attilahypnotist@nk.ca
DocumentRoot /usr/home/attilahypnotist/html/magicalmomentsdvd.com/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName magicalmomentsdvd.com
ErrorLog /var/log/httpd/magicalmomentsdvd-error_log
CustomLog /var/log/httpd/magicalmomentsdvd-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin lorib2002@nk.ca
DocumentRoot /usr/home/lorib2002/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName platinumvending.com
ErrorLog /var/log/httpd/platinumvending-error_log
CustomLog /var/log/httpd/platinumvending-access_log combined
ScriptAlias /cgi-bin/ /usr/home/lorib2002/cgi-bin/
ServerAdmin jbondy@nk.ca
DocumentRoot /usr/home/attilahypnotist/html/all_sites/OTHERS/hypnoflytie.com/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName hypnoflytie.com
ErrorLog /var/log/httpd/hypnoflytie-error_log
CustomLog /var/log/httpd/hypnoflytie-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin emerald@nk.ca
DocumentRoot /usr/home/emerald/html/cedarparkinn/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName cedarparkinn.com
ErrorLog /var/log/httpd/cedarparkinn-error_log
CustomLog /var/log/httpd/cedarparkinn-access_log combined
ScriptAlias /cgi-bin/ /usr/home/emerald/cgi-bin/
ServerAdmin ycnweb@nk.ca
DocumentRoot /usr/home/ycnweb/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName yourcoffeenews.com
ErrorDocument 404 http://www.yourcoffeenews.com
ErrorLog /var/log/httpd/yourcoffeenews-error_log
CustomLog /var/log/httpd/yourcoffeenews-access_log combined
ScriptAlias /cgi-bin/ /usr/home/ycnweb/cgi-bin/
ServerAdmin swp@nk.ca
DocumentRoot /usr/home/woodbridge/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName ontariosauctionpaper.com
ErrorDocument 404 http://www.ontariosauctionpaper.com
ErrorLog /var/log/httpd/ontariosauctionpaper-error_log
CustomLog /var/log/httpd/ontariosauctionpaper-access_log combined
ScriptAlias /cgi-bin/ /usr/home/woodbridge/cgi-bin/
ServerAdmin dingchavez@nk.ca
DocumentRoot /usr/home/dingchavez/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName pchotshot.com
ErrorLog /var/log/httpd/pchotshot-error_log
CustomLog /var/log/httpd/pchotshot-access_log combined
ScriptAlias /cgi-bin/ /usr/home/dingchavez/cgi-bin/
NameVirtualHost 66.48.34.14:80
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilahypnotist.info/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName attilahypnotist.info
UseCanonicalName DNS
ErrorLog /var/log/httpd/attilahypnotist.info-error_log
CustomLog /var/log/httpd/attilahypnotist.info-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin csiwebadmin@nk.ca
DocumentRoot /usr/home/csiwebadmin/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName csi-ltd.ca.ca
ErrorLog /var/log/httpd/csi-ltd-error_log
CustomLog /var/log/httpd/csi-ltd-access_log combined
ScriptAlias /cgi-bin/ /usr/home/csiwebadmin/cgi-bin/
ServerAdmin kopper@nk.ca
DocumentRoot /usr/home/kopper/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName 429sqn.ca
ErrorLog /var/log/httpd/429sqn-error_log
CustomLog /var/log/httpd/429sqn-access_log combined
ScriptAlias /cgi-bin/ /usr/home/kopper/cgi-bin/
ServerAdmin people@nk.ca
DocumentRoot /usr/home/people/html/
DirectoryIndex default.asp index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName pc-people.net
ErrorLog /var/log/httpd/pc-people-error_log
CustomLog /var/log/httpd/pc-people-access_log combined
ScriptAlias /cgi-bin/ /usr/home/people/cgi-bin/
ServerAdmin comtran@nk.ca
DocumentRoot /usr/home/comtran/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName comtran.ca
ErrorLog /var/log/httpd/comtran-error_log
CustomLog /var/log/httpd/comtran-access_log combined
ScriptAlias /cgi-bin/ /usr/home/comtran/cgi-bin/
ServerAdmin john@nk.ca
DocumentRoot /usr/home/john/Eikaiwa.ca/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
DefaultLanguage ja
LanguagePriority ja en cs de es fr it nl sv pt-br ro
ForceLanguagePriority Prefer Fallback
ServerName eikaiwa.ca
ErrorDocument 404 http://www.eikaiwa.ca/
ErrorLog /var/log/httpd/eikaiwa-error_log
CustomLog /var/log/httpd/eikaiwa-access_log combined
ScriptAlias /cgi-bin/ /usr/home/conversation/cgi-bin/
ServerAdmin radcock@telusplanet.net
DocumentRoot /usr/home/radcock/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm main.htm
ServerName biopolis.ca
ErrorDocument 404 http://www.biopolis.ca/
ErrorLog /var/log/httpd/biopolis-error_log
CustomLog /var/log/httpd/biopolis-access_log combined
ScriptAlias /cgi-bin/ /usr/home/radcock/cgi-bin/
ServerAdmin mbarnes@nk.ca
DocumentRoot /usr/home/mbarnes/html/
ReDirect / http://www.discountdining.ca/coupons/dariens.htm
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName dariens.ca
ErrorLog /var/log/httpd/dariens-error_log
CustomLog /var/log/httpd/dariens-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mbarnes/cgi-bin/
ServerAdmin alans@shaw.ca
DocumentRoot /usr/home/bikeclub/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName bikeclub.ca
ErrorDocument 404 http://www.bikeclub.ca/
ErrorLog /var/log/httpd/bikeclub-error_log
CustomLog /var/log/httpd/bikeclub-access_log combined
ScriptAlias /cgi-bin/ /usr/home/bikeclub/cgi-bin/
ServerAdmin vernonloutan@nk.ca
DocumentRoot /usr/home/hcars/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName healthcareandrehab.com
ErrorLog /var/log/httpd/healthcareandrehab-error_log
CustomLog /var/log/httpd/healthcareandrehab-access_log combined
ScriptAlias /cgi-bin/ /usr/home/hcars/cgi-bin/
ServerAdmin emerald@nk.ca
DocumentRoot /usr/home/emerald/html/southbendmotel/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName southbendmotel.ca
ErrorLog /var/log/httpd/southbendmotel-error_log
CustomLog /var/log/httpd/southbendmotel-access_log combined
ScriptAlias /cgi-bin/ /usr/home/emerald/cgi-bin/
ServerAdmin emerald@nk.ca
DocumentRoot /usr/home/emerald/html/seasonsgrill/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName seasonsgrill.ca
ErrorLog /var/log/httpd/seasonsgrill-error_log
CustomLog /var/log/httpd/seasonsgrill-access_log combined
ScriptAlias /cgi-bin/ /usr/home/emerald/cgi-bin/
ServerAdmin aboo@nk.ca
DocumentRoot /usr/home/aboo/html/snorefree2/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName snorefree2.com
ErrorLog /var/log/httpd/snorefree2-error_log
CustomLog /var/log/httpd/snorefree2-access_log combined
ScriptAlias /cgi-bin/ /usr/home/snorefree2/cgi-bin/
ServerAdmin weaja@mts.net
DocumentRoot /usr/home/weaja/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName weajaworks.com
ErrorLog /var/log/httpd/weajaworks-error_log
CustomLog /var/log/httpd/weajaworks-access_log combined
ScriptAlias /cgi-bin/ /usr/home/weaja/cgi-bin/
ServerAdmin bjm@bennaco.com
DocumentRoot /usr/home/art/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName artshangar.com
ErrorLog /var/log/httpd/artshangar-error_log
CustomLog /var/log/httpd/artshangar-access_log combined
ScriptAlias /cgi-bin/ /usr/home/art/cgi-bin/
ServerAdmin bones@nk.ca
DocumentRoot /usr/home/bones/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName bonesnet.ws
ErrorLog /var/log/httpd/bonesnet-error_log
CustomLog /var/log/httpd/bonesnet-access_log combined
ScriptAlias /cgi-bin/ /usr/home/bonesnet/cgi-bin/
ServerAdmin vbc@nk.ca
DocumentRoot /usr/home/vbc/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName vancouverbreastcentre.com
ErrorLog /var/log/httpd/vancouverbreastcentre-error_log
CustomLog /var/log/httpd/vancouverbreastcentre-access_log combined
ScriptAlias /cgi-bin/ /usr/home/vbc/cgi-bin/
ServerAdmin schmidt@nk.ca
DocumentRoot /usr/home/schmidt/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName schmidtreunion.ca
ErrorLog /var/log/httpd/schmidtreunion-error_log
CustomLog /var/log/httpd/schmidtreunion-access_log combined
ScriptAlias /cgi-bin/ /usr/home/schmidt/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilahypnotist.org/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName attilahypnotist.org
ErrorLog /var/log/httpd/attilahypnotist.org-error_log
CustomLog /var/log/httpd/attilahypnotist.org-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin mbarnes@nk.ca
DocumentRoot /usr/home/mbarnes/html/rentsmi/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName rent-smi.com
ErrorLog /var/log/httpd/rent-smi-error_log
CustomLog /var/log/httpd/rent-smi-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mbarnes/cgi-bin/
ServerAdmin coldlakecondos@nk.ca
DocumentRoot /usr/home/coldlakecondos/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName coldlakecondos.com
ErrorLog /var/log/httpd/coldlakecondos-error_log
CustomLog /var/log/httpd/coldlakecondos-access_log combined
ScriptAlias /cgi-bin/ /usr/home/coldlakecondos/cgi-bin/
ServerAdmin emerald@nk.ca
DocumentRoot /usr/home/emerald/html/greensteel/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName greensteel.ca
ErrorLog /var/log/httpd/greensteel-error_log
CustomLog /var/log/httpd/greensteel-access_log combined
ScriptAlias /cgi-bin/ /usr/home/emerald/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/OTHERS/jesuschristparthianprince.com/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName jesuschristparthianprince.com.
ErrorLog /var/log/httpd/jesuschristparthianprince.com-error_log
CustomLog /var/log/httpd/jesuschristparthianprince.com-access_log combined
ScriptAlias /cgi-bin/ /usr/home/fhcn/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilahome.com/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName attilahome.com
ErrorLog /var/log/httpd/attilahome.com-error_log
CustomLog /var/log/httpd/attilahome.com-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin mgodine@alocalchoice.con
DocumentRoot /usr/home/mouldguy1964/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName mouldsolutions.ca
ErrorLog /var/log/httpd/mouldsolutions-error_log
CustomLog /var/log/httpd/mouldsolutions-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mouldguy1964/cgi-bin/
ServerAdmin myopea@nk.ca
DocumentRoot /usr/home/myopea/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName gamershaven.ca
ErrorLog /var/log/httpd/gamershaven-error_log
CustomLog /var/log/httpd/gamershaven-access_log combined
ScriptAlias /cgi-bin/ /usr/home/myopea/cgi-bin/
ServerAdmin integration@nk.ca
DocumentRoot /usr/home/integration/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName integrationpilates.com
ErrorLog /var/log/httpd/integrationpilates-error_log
CustomLog /var/log/httpd/integrationpilates-access_log combined
ScriptAlias /cgi-bin/ /usr/home/integration/cgi-bin/
ServerAdmin exposure@nk.ca
DocumentRoot /usr/home/harttrans/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName harttransmission.com
ErrorLog /var/log/httpd/harttransmission-error_log
CustomLog /var/log/httpd/harttransmission-access_log combined
ScriptAlias /cgi-bin/ /usr/home/harttrans/cgi-bin/
DocumentRoot /var/www/docs/capitalstewards/
Redirect 301 / https://secure.capitalstewards.com/
ServerName capitalstewards.com
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerAdmin rjeune@nk.ca
DocumentRoot /usr/home/rjeune/html/rgabc/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName rgabc.org
ErrorLog /var/log/httpd/rgabc-error_log
CustomLog /var/log/httpd/rgabc-access_log combined
ScriptAlias /cgi-bin/ /usr/home/rjeune/cgi-bin/
ServerAdmin summit@nk.ca
DocumentRoot /usr/home/summit/html/northernoutdoorsman/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName northernoutdoorsman.com
ErrorLog /var/log/httpd/northernoutdoorsman-error_log
CustomLog /var/log/httpd/northernoutdoorsman-access_log combined
ScriptAlias /cgi-bin/ /usr/home/summit/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/ATTILA/attilahypnotist.us/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName attilahypnotist.us
ErrorLog /var/log/httpd/attilahypnotist.us-error_log
CustomLog /var/log/httpd/attilahypnotist.us-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin gilchrist@nk.ca
DocumentRoot /usr/home/gilchrist/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName pgilchrist.ca
ErrorLog /var/log/httpd/pgilchrist-error_log
CustomLog /var/log/httpd/pgilchrist-access_log combined
ScriptAlias /cgi-bin/ /usr/home/gilchrist/cgi-bin/
ServerAdmin iuoe955trust@nk.ca
DocumentRoot /usr/home/iuoe955trust/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName iuoe955trust.com
ErrorLog /var/log/httpd/iuoe955trust-error_log
CustomLog /var/log/httpd/iuoe955trust-access_log combined
ScriptAlias /cgi-bin/ /usr/home/iuoe955trust/cgi-bin/
ServerAdmin mapleisle@nk.ca
DocumentRoot /usr/home/mapleisle/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName mapleislehomes.ca
ErrorLog /var/log/httpd/mapleislehomes-error_log
CustomLog /var/log/httpd/mapleislehomes-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mapleisle/cgi-bin/
ServerAdmin dalori@nk.ca
DocumentRoot /usr/home/dalori/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName dalori.ca
ErrorLog /var/log/httpd/dalori-error_log
CustomLog /var/log/httpd/dalori-access_log combined
ScriptAlias /cgi-bin/ /usr/home/dalori/cgi-bin/
ServerAdmin bjm@nk.ca
DocumentRoot /usr/home/learning/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName ldaa-ec.ca
ErrorLog /var/log/httpd/ldaa-ec-error_log
CustomLog /var/log/httpd/ldaa-ec-access_log combined
ScriptAlias /cgi-bin/ /usr/home/learning/cgi-bin/
ServerAdmin lawracom@nk.ca
DocumentRoot /usr/home/attica/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName atticaantiques.com
ErrorLog /var/log/httpd/atticaantiques-error_log
CustomLog /var/log/httpd/atticaantiques-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attica/cgi-bin/
ServerAdmin mbarnes@nk.ca
DocumentRoot /usr/home/mbarnes/html/anthonysells/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName anthonysells.com
ErrorLog /var/log/httpd/anthonysells-error_log
CustomLog /var/log/httpd/anthonysells-access_log combined
ScriptAlias /cgi-bin/ /usr/home/mbarnes/cgi-bin/
ServerAdmin rick2@nk.ca
DocumentRoot /usr/home/rick2/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName barr.ca
ErrorLog /var/log/httpd/barr-error_log
CustomLog /var/log/httpd/barr-access_log combined
ScriptAlias /cgi-bin/ /usr/home/rick2/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnosistraining.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName stagehypnosistraining.ca
ErrorLog /var/log/httpd/stagehypnosistraining.ca-error_log
CustomLog /var/log/httpd/stagehypnosistraining.ca-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin bdigroup@nk.ca
DocumentRoot /usr/home/bdigroup/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName groupbdi.com
ErrorLog /var/log/httpd/groupbdi-error_log
CustomLog /var/log/httpd/groupbdi-access_log combined
ScriptAlias /cgi-bin/ /usr/home/bdigroup/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/SHOWS4UCA/shows4u.biz/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName shows4u.biz
ErrorLog /var/log/httpd/shows4u.biz-error_log
CustomLog /var/log/httpd/shows4u.biz-access_log combined
ScriptAlias /cgi-bin/ /usr/home/attilahypnotist/cgi-bin/
ServerAdmin rex@nk.ca
DocumentRoot /usr/home/rex/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName theebookking.com
ErrorLog /var/log/httpd/theebookking-error_log
CustomLog /var/log/httpd/theebookking-access_log combined
ScriptAlias /cgi-bin/ /usr/home/rex/cgi-bin/
ServerAdmin naiso@nk.ca
DocumentRoot /usr/home/markp/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName carteb.ca
ErrorLog /var/log/httpd/carteb-error_log
CustomLog /var/log/httpd/carteb-access_log combined
ScriptAlias /cgi-bin/ /usr/home/markp/cgi-bin/
ServerAdmin jymetal@nk.ca
DocumentRoot /usr/home/jymetal/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName jymetaldesign.com
ErrorLog /var/log/httpd/jymetaldesign-error_log
CustomLog /var/log/httpd/jymetaldesign-access_log combined
ScriptAlias /cgi-bin/ /usr/home/jymetal/cgi-bin/
ServerAdmin eliteclans@nk.ca
DocumentRoot /usr/home/eliteclans/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName eliteclans.ca
ErrorLog /var/log/httpd/eliteclans-error_log
CustomLog /var/log/httpd/eliteclans-access_log combined
ScriptAlias /cgi-bin/ /usr/home/eliteclans/cgi-bin/
ServerAdmin attilahypnotist@yahoo.com
DocumentRoot /usr/home/attilahypnotist/html/all_sites/STAGEHYPNOSIS/stagehypnosiscourse.ca
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName stagehypnosiscourse.ca
ErrorLog /var/log/httpd/stagehypnosiscourse.ca-error_log
CustomLog /var/log/httpd/stagehypnosiscourse.ca-access_log combined
ScriptAlias /cgi-bin/ /usr/home/eattilahypnotist/cgi-bin/
ServerAdmin stconsultants@nk.ca
DocumentRoot /usr/home/stconsultants/html/
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName stconsultants.com
ErrorLog /var/log/httpd/stconsultants-error_log
CustomLog /var/log/httpd/stconsultants-access_log combined
ScriptAlias /cgi-bin/ /usr/home/stconsultants/cgi-bin/
ServerAdmin dshalanski@hotmail.com
DocumentRoot /usr/home/birdcovebc/html
DirectoryIndex index.phtml index.php index.php3 index.cgi index.pl index.shtml index.html index.htm
ServerName daengines.com
ErrorLog /var/log/httpd/birdcovebc-error_log
CustomLog /var/log/httpd/birdcovebc-access_log combined
ScriptAlias /cgi-bin/ /usr/home/birdcovebc/cgi-bin/
Alias /apache_icons/ /var/www/icons/
Alias /apache_images/ /var/www/images/
ScriptAlias /cgi-perl/ /var/www/cgi-bin/
ScriptAlias /perl/ /var/www/cgi-bin/
ScriptAlias /squid-status/ /var/www/squid/bin/cachemgr.cgi/
ScriptAlias /_vti_bin/_vti_adm/ /usr/local/frontpage/currentversion/_vti_bin/_vti_adm/
ScriptAlias /_vti_bin/_vti_aut/ /usr/local/frontpage/currentversion/_vti_bin/_vti_aut/
ScriptAlias /_vti_bin/ /usr/local/frontpage/currentversion/_vti_bin/
ScriptAlias /~nuway/mc/_vti_bin/ /usr/local/frontpage/currentversion/_vti_bin/
ScriptAlias /~gibbons/_vti_bin/ /usr/local/frontpage/currentversion/_vti_bin/
#<-- DRN-install
#
Alias /drn-install/ /var/local/drn/drn-install/
Alias /drn-setup/images/ /var/local/drn/www/drn-setup/images/
ScriptAlias /drn-setup/ /usr/source/drn/www/drn-setup/
options none
AllowOverride None
order deny,allow
deny from all
allow from localhost
ScriptAlias /drn-admin/ /usr/source/drn/www/drn-admin/
options none
AllowOverride None
order deny,allow
deny from all
allow from localhost
##SSLEngine on
##SSLCertificateFile /var/www/SSLconf/conf/secure.nl2k.ab.ca.2004.crt
##SSLCertificateKeyFile /var/www/SSLconf/conf/secure.nl2k.ab.ca.key
#-->
#
#DocumentRoot /usr/local/frontpage/version5.0/exes/_vti_bin/_vti_adm
#DirectoryIndex fpadmcgi.exe
#
# AddHandler cgi-script .exe
# Options ExecCGI
# AllowOverride All
#
#
#Listen 8887
#Listen 8888
#
#DocumentRoot /usr/local/frontpage/version5.0/admin-exes
#DirectoryIndex fpadmcgi.exe
#
# AddHandler cgi-script .exe
# Options ExecCGI
# AllowOverride All
#
#