The following reply was made to PR config/821; it has been noted by GNATS.

From: [EMAIL PROTECTED] (Rodent of Unusual Size)
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Cc:  Subject: Re: config/821: Virtual Hosts index.html not found
Date: Wed, 15 Oct 1997 12:34:59 -0400

 [Responses from submitter, lost for many weeks..!]
 
 Date: Wed, 02 Jul 1997 17:21:59 -0700
 From: Bosco Tsang <[EMAIL PROTECTED]>
 
 Hi Ken,
 
 Thanks for your reply.
 
 At 02:13 PM 7/2/97 -0700, you wrote:
 >Please also send the output from the following commands:
 >
 >ls -ld index.html
 >ls -ld cgi-bin
 
 [/usr/local/apache]$ ls -ld /home/a/amcall/public_html/cgi-bin
 drwxr-xr-x   2 amcall   member       512 Mar 04 12:42
 /home/a/amcall/public_html
 [/usr/local/apache]$ ls -ld /home/a/amcall/public_html/index.html
 -rw-r--r--   1 amcall   member       234 Feb 18 23:07
 /home/a/amcall/public_html
 
 >and any extracts from the server errorlog that seem to
 >be related to the failed access attempts.
 
 There is no error logged in the error_log at all!
 
 Date: Wed, 02 Jul 1997 17:39:22 -0400
 From: [EMAIL PROTECTED] (IPO Web Server)
 
 # This is the main server configuration file. See URL http://www.apache.org/
 # for instructions.
 
 # Do NOT simply read the instructions in here without understanding
 # what they do, if you are unsure consult the online docs. You have been
 # warned.  
 
 # Originally by Rob McCool
 
 # ServerType is either inetd, or standalone.
 
 ServerType standalone
 
 # If you are running from inetd, go to "ServerAdmin".
 
 # Port: The port the standalone listens to. For ports < 1023, you will
 # need httpd to be run as root initially.
 
 Port 8080
 
 # HostnameLookups: Log the names of clients or just their IP numbers
 #   e.g.   www.apache.org (on) or 204.62.129.132 (off)
 HostnameLookups on
 
 # 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.
 User http
 Group www
 
 # The following directive disables keepalives and HTTP header flushes for
 # Netscape 2.x and browsers which spoof it. There are known problems with
 # these
 
 BrowserMatch Mozilla/2 nokeepalive
 
 # ServerAdmin: Your address, where problems with the server should be
 # e-mailed.
 
 ServerAdmin [EMAIL PROTECTED]
 
 # ServerRoot: The directory the server's config, error, and log files
 # are kept in
 
 ServerRoot /usr/local/apache/apache_1.2.0
 
 # BindAddress: You can support virtual hosts with this option. This option
 # is used to tell the server which IP address to listen to. It can either
 # contain "*", an IP address, or a fully qualified Internet domain name.
 # See also the VirtualHost directive.
 
 #BindAddress *
 
 # ErrorLog: The location of the error log file. If this does not start
 # with /, ServerRoot is prepended to it.
 
 ErrorLog logs/error_log
 
 # TransferLog: The location of the transfer log file. If this does not
 # start with /, ServerRoot is prepended to it.
 
 TransferLog logs/access_log
 
 # PidFile: The file the server should log its pid to
 PidFile logs/httpd.pid
 
 # ScoreBoardFile: File used to store internal server process information.
 # Not all architectures require this.  But if yours does (you'll know because
 # this file is created when you run Apache) then you *must* ensure that
 # no two invocations of Apache share the same scoreboard file.
 ScoreBoardFile logs/apache_status
 
 # ServerName allows you to set a host name which is sent back to clients for
 # your server if it's different than the one the program would get (i.e. use
 # "www" instead of the host's real name).
 #
 # Note: You cannot just invent host names and hope they work. The name you 
 # define here must be a valid DNS name for your host. If you don't understand
 # this, ask your network administrator.
 
 #ServerName new.host.name
 ServerName www.ipoline.com
 
 # CacheNegotiatedDocs: By default, Apache sends Pragma: no-cache with each
 # document that was negotiated on the basis of content. This asks proxy
 # servers not to cache the document. Uncommenting the following line disables
 # this behavior, and proxies will be allowed to cache the documents.
 
 #CacheNegotiatedDocs
 
 # Timeout: The number of seconds before receives and sends time out
 
 Timeout 1800
 
 # KeepAlive: Whether or not to allow persistent connections (more than
 # one request per connection). Set to "Off" to deactivate.
 
 KeepAlive On
 
 # MaxKeepAliveRequests: The maximum number of requests to allow
 # during a persistent connection. Set to 0 to allow an unlimited amount.
 # We reccomend you leave this number high, for maximum performance.
 
 MaxKeepAliveRequests 0
 
 # KeepAliveTimeout: Number of seconds to wait for the next request
 
 KeepAliveTimeout 120
 
 # Server-pool size regulation.  Rather than making you guess how many
 # server processes you need, Apache dynamically adapts to the load it
 # sees --- that is, it tries to maintain enough server processes to
 # handle the current load, plus a few spare servers to handle transient
 # load spikes (e.g., multiple simultaneous requests from a single
 # Netscape browser).
 
 # It does this by periodically checking how many servers are waiting
 # for a request.  If there are fewer than MinSpareServers, it creates
 # a new spare.  If there are more than MaxSpareServers, some of the
 # spares die off.  These values are probably OK for most sites ---
 
 MinSpareServers 5
 MaxSpareServers 10
 
 # Number of servers to start --- should be a reasonable ballpark figure.
 
 StartServers 120
 
 # Limit on total number of servers running, i.e., limit on the number
 # of clients who can simultaneously connect --- if this limit is ever
 # reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.
 # It is intended mainly as a brake to keep a runaway server from taking
 # Unix with it as it spirals down...
 
 MaxClients 240
 
 # MaxRequestsPerChild: the number of requests each child process is
 #  allowed to process before the child dies.
 #  The child will exit so as to avoid problems after prolonged use when
 #  Apache (and maybe the libraries it uses) leak.  On most systems, this
 #  isn't really needed, but a few (such as Solaris) do have notable leaks
 #  in the libraries.
 
 MaxRequestsPerChild 1800
 
 # Proxy Server directives. Uncomment the following line to
 # enable the proxy server:
 
 #ProxyRequests On
 
 # To enable the cache as well, edit and uncomment the following lines:
 
 #CacheRoot /usr/local/etc/httpd/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 alto the BindAddress entry.
  
 #<VirtualHost host.some_domain.com>
 #ServerAdmin [EMAIL PROTECTED]
 #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
 #</VirtualHost>
 
 <VirtualHost 206.47.42.51:8080>
 ServerAdmin [EMAIL PROTECTED]
 ServerName www.amcallpaging.com
 DocumentRoot /home/a/amcall/public_html
 # ErrorLog logs2/amcallpaging.com_error_log
 TransferLog /usr/local/httpd/logs2/amcallpaging.com_access_log
 </VirtualHost>
 
 <VirtualHost 206.47.42.52>
 ServerAdmin [EMAIL PROTECTED]
 ServerName www.buautodesign.com
 DocumentRoot /home/b/bcauto/public_html
 # ErrorLog logs2/bcautodesign.com_error_log
 TransferLog /usr/local/httpd/logs2/bcautodesign.com_access_log
 </VirtualHost>
 
 <VirtualHost 206.47.42.53>
 ServerAdmin [EMAIL PROTECTED]
 ServerName www.wushu.com
 DocumentRoot /home/c/ccksf/public_html
 # ErrorLog logs2/wushu.com_error_log
 TransferLog /usr/local/httpd/logs2/wushu.com_access_log
 </VirtualHost>
 
 <VirtualHost 206.47.42.54>
 ServerAdmin [EMAIL PROTECTED]
 ServerName www.gtr.org
 DocumentRoot /home/s/scouts/public_html
 # ErrorLog log2/gtr.org_error_log
 TransferLog /usr/local/httpd/logs2/gtr.org_access_log
 </VirtualHost>
 
 <VirtualHost 206.47.42.58>
 ServerAdmin [EMAIL PROTECTED]
 ServerName www.jabasystem.com
 DocumentRoot /home/j/jaba/public_html
 # ErrorLog log2/jabasystem.com_error_log
 TransferLog /usr/local/httpd/logs2/jabasystem.com_access_log
 </VirtualHost>
 
 <VirtualHost 206.47.42.61>
 ServerAdmin [EMAIL PROTECTED]
 ServerName www.ccican.com
 DocumentRoot /home/c/ccican/public_html
 # ErrorLog log2/ccican.com_error_log
 TransferLog /usr/local/httpd/logs2/ccican.com_access_log
 </VirtualHost>
 
 <VirtualHost 206.47.42.62>
 ServerAdmin [EMAIL PROTECTED]
 ServerName www.tbridge.com
 DocumentRoot /home2/t/tbridge/public_html
 # ErrorLog log2/tbridge.com_error_log
 TransferLog /usr/local/httpd/logs2/tbridge.com_access_log
 </VirtualHost>
 
 <VirtualHost 206.47.42.56>
 ServerAdmin [EMAIL PROTECTED]
 ServerName www.koman.com
 DocumentRoot /home/k/koman/public_html
 # ErrorLog log2/koman.com_error_log
 TransferLog /usr/local/httpd/logs2/koman.com_access_log
 </VirtualHost>
 
 <VirtualHost 206.47.42.60>
 ServerAdmin [EMAIL PROTECTED]
 ServerName www.comtak.com
 DocumentRoot /home2/c/comtak2/public_html
 # ErrorLog log2/comtak.com_error_log
 TransferLog /usr/local/httpd/logs2/comtak.com_access_log
 </VirtualHost>
 
 <VirtualHost 206.47.42.93>
 ServerAdmin [EMAIL PROTECTED]
 ServerName www.celestialdesign.com
 DocumentRoot /home/c/cdesign/public_html
 # ErrorLog log2/cdesign.com_error_log
 TransferLog /usr/local/httpd/logs2/celestialdesign.com_access_log
 </VirtualHost>
 
 Date: Wed, 02 Jul 1997 17:39:46 -0400
 From: [EMAIL PROTECTED] (IPO Web Server)
 
 # With this document, you define the name space that users see of your http
 # server.  This file also defines server settings which affect how requests are
 # serviced, and how results should be formatted. 
 
 # See the tutorials at http://www.apache.org/ for
 # more information.
 
 # Originally by Rob McCool; Adapted for Apache
 
 
 # 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 /www/htdocs
 # DocumentRoot /usr/local/apache/htdocs
 
 # UserDir: The name of the directory which is appended onto a user's home
 # directory if a ~user request is recieved.
 
 UserDir public_html
 
 # DirectoryIndex: Name of the file or files to use as a pre-written HTML
 # directory index.  Separate multiple entries with spaces.
 
 DirectoryIndex index.html index.shtml index.htm
 
 # FancyIndexing is whether you want fancy directory indexing or standard
 
 FancyIndexing on
 
 # AddIcon tells the server which icon to show for different files or filename
 # extensions
 
 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/movie.xbm .mpg .qt
 AddIcon /icons/binary.xbm .bin
 
 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.xbm
 
 # AddDescription allows you to place a short description after a file in
 # server-generated indexes.
 # Format: AddDescription "description" filename
 
 # ReadmeName is the name of the README file the server will look for by
 # default. Format: ReadmeName name
 #
 # The server will first look for name.html, include it if found, and it will
 # then look for name and include it as plaintext if found.
 #
 # HeaderName is the name of a file which should be prepended to
 # directory indexes. 
 
 ReadmeName README
 HeaderName HEADER
 
 # IndexIgnore is a set of filenames which directory indexing should ignore
 # Format: IndexIgnore name1 name2...
 
 IndexIgnore */.??* *~ *# */HEADER* */README* */RCS
 
 # AccessFileName: The name of the file to look for in each directory
 # for access control information.
 
 AccessFileName .htaccess
 
 # DefaultType is the default MIME type for documents which the server
 # cannot find the type of from filename extensions.
 
 DefaultType text/plain
 
 # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
 # information on the fly. Note: Not all browsers support this.
 
 AddEncoding x-compress Z
 AddEncoding x-gzip gz
 
 # 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
 # it can understand.  Note that 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.
 
 AddLanguage en .en
 AddLanguage fr .fr
 AddLanguage de .de
 AddLanguage da .da
 AddLanguage el .el
 AddLanguage it .it
 
 # 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.
 
 LanguagePriority en fr de
 
 # 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.
 # Format: Redirect fakename url
 
 Redirect /~3ds http://home.ipoline.com/~3ds
 Redirect /~abomb http://home.ipoline.com/~abomb
 Redirect /~acchan http://home.ipoline.com/~acchan
 Redirect /~acy2yiu http://home.ipoline.com/~acy2yiu
 Redirect /~ajh http://home.ipoline.com/~ajh
 Redirect /~alexfho http://home.ipoline.com/~alexfho
 Redirect /~apu http://home.ipoline.com/~apu
 Redirect /~belleqq http://home.ipoline.com/~belleqq
 Redirect /~bunon http://home.ipoline.com/~bunon
 Redirect /~chilun http://home.ipoline.com/~chilun
 Redirect /~chiwai http://home.ipoline.com/~chiwai
 Redirect /~choykam http://home.ipoline.com/~choykam
 Redirect /~chuchun http://home.ipoline.com/~chuchun
 Redirect /~chui http://home.ipoline.com/~chui
 Redirect /~chungki http://home.ipoline.com/~chungki
 Redirect /~ckkong http://home.ipoline.com/~ckkong
 Redirect /~clmlo http://home.ipoline.com/~clmlo
 Redirect /~d6chan http://home.ipoline.com/~d6chan
 Redirect /~dchow http://home.ipoline.com/~dchow
 Redirect /~ddd http://home.ipoline.com/~ddd
 Redirect /~derrick http://home.ipoline.com/~derrick
 Redirect /~dpoon http://home.ipoline.com/~dpoon
 Redirect /~edcon http://home.ipoline.com/~edcon
 Redirect /~eddiewu http://home.ipoline.com/~eddiewu
 Redirect /~edison http://home.ipoline.com/~edison
 Redirect /~edmund http://home.ipoline.com/~edmund
 Redirect /~efung http://home.ipoline.com/~efung
 Redirect /~el94aj http://home.ipoline.com/~el94aj
 Redirect /~elmert http://home.ipoline.com/~elmert
 Redirect /~eugine http://home.ipoline.com/~eugine
 Redirect /~fcct http://home.ipoline.com/~fcct
 Redirect /~gabriel http://home.ipoline.com/~gabriel
 Redirect /~garylau http://home.ipoline.com/~garylau
 Redirect /~hawkins http://home.ipoline.com/~hawkins
 Redirect /~hellovc http://home.ipoline.com/~hellovc
 Redirect /~henryf http://home.ipoline.com/~henryf
 Redirect /~hl1102 http://home.ipoline.com/~hl1102
 Redirect /~ivanc http://home.ipoline.com/~ivanc
 Redirect /~jackyl http://home.ipoline.com/~jackyl
 Redirect /~janjack http://home.ipoline.com/~janjack
 Redirect /~jasont http://home.ipoline.com/~jasont
 Redirect /~jeffcho http://home.ipoline.com/~jeffcho
 Redirect /~karl2 http://home.ipoline.com
 Redirect /~kendrew http://home.ipoline.com/~kendrew
 Redirect /~kenneth http://home.ipoline.com/~kenneth
 Redirect /~kensue http://home.ipoline.com/~kensue
 Redirect /~keropi http://home.ipoline.com/~keropi
 Redirect /~kirklau http://home.ipoline.com/~kirklau
 Redirect /~lin http://home.ipoline.com/~lin
 Redirect /~lucas http://home.ipoline.com/~lucas
 Redirect /~moktts http://home.ipoline.com/~moktts
 Redirect /~nonno http://home.ipoline.com/~nonno
 Redirect /~nsakai http://home.ipoline.com/~nsakai
 Redirect /~onhingw http://home.ipoline.com/~onhingw
 Redirect /~pathung http://home.ipoline.com/~pathung
 Redirect /~pauline http://home.ipoline.com/~pauline
 Redirect /~pchan http://home.ipoline.com/~pchan
 Redirect /~picky http://home.ipoline.com/~picky
 Redirect /~pll http://home.ipoline.com/~pll
 Redirect /~poons http://home.ipoline.com/~poons
 Redirect /~pow http://home.ipoline.com/~pow
 Redirect /~pshwong http://home.ipoline.com/~pshwong
 Redirect /~rcheung http://home.ipoline.com/~rcheung
 Redirect /~renita http://home.ipoline.com/~renita
 Redirect /~rlee299 http://home.ipoline.com/~rlee299
 Redirect /~rtcllau http://home.ipoline.com/~rtcllau
 Redirect /~samchan http://home.ipoline.com/~samchan
 Redirect /~schang http://home.ipoline.com/~schang
 Redirect /~shawnlo http://home.ipoline.com/~shawnlo
 Redirect /~simhome http://home.ipoline.com/~simhome
 Redirect /~skelvin http://home.ipoline.com/~skelvin
 Redirect /~smitten http://home.ipoline.com/~smitten
 Redirect /~tds6510 http://home.ipoline.com/~tds6510
 Redirect /~teklord http://home.ipoline.com/~teklord
 Redirect /~terrych http://home.ipoline.com/~terrych
 Redirect /~theking http://home.ipoline.com/~theking
 Redirect /~tommyng http://home.ipoline.com/~tommyng
 Redirect /~totoloo http://home.ipoline.com/~totolee
 Redirect /~vegita http://home.ipoline.com/~vegita
 Redirect /~vinak http://home.ipoline.com/~vinak
 Redirect /~vyam http://home.ipoline.com/~vyam
 Redirect /~win649 http://home.ipoline.com/~win649
 Redirect /~wooman http://home.ipoline.com/~wooman
 Redirect /~wshui http://home.ipoline.com/~wshui
 Redirect /~240se http://home.ipoline.com/~240se
 Redirect /~aim http://home.ipoline.com/~aim
 Redirect /~alanyim http://home.ipoline.com/~alanyim
 Redirect /~bb23 http://home.ipoline.com/~bb23
 Redirect /~capsule http://home.ipoline.com/~capsule
 Redirect /~carrotc http://home.ipoline.com/~carrotc
 Redirect /~chengcc http://home.ipoline.com/~chengcc
 Redirect /~ckck http://home.ipoline.com/~ckck
 Redirect /~dhu http://home.ipoline.com/~dhu
 Redirect /~dorisc http://home.ipoline.com/~dorisc
 Redirect /~essgtam http://home.ipoline.com/~essgtam
 Redirect /~fongco http://home.ipoline.com/~fongco
 Redirect /~jchoi http://home.ipoline.com/~jchoi
 Redirect /~jwu http://home.ipoline.com/~jwu
 Redirect /~kenway1 http://home.ipoline.com/~kenway1
 Redirect /~kinson http://home.ipoline.com/~kinson
 Redirect /~kris http://home.ipoline.com/~kris
 Redirect /~kwleung http://home.ipoline.com/~kwleung
 Redirect /~owl http://home.ipoline.com/~owl
 Redirect /~peggy http://home.ipoline.com/~peggy
 Redirect /~philipc http://home.ipoline.com/~philipc
 Redirect /~raykwok http://home.ipoline.com/~raykwok
 Redirect /~ronald http://home.ipoline.com/~ronald
 Redirect /~rseto http://home.ipoline.com/~rseto
 Redirect /~skywalk http://home.ipoline.com/~skywalk
 Redirect /~terluk http://home.ipoline.com/~terluk
 Redirect /~tsunsn http://home.ipoline.com/~tsunsn
 Redirect /~vitasoy http://home.ipoline.com/~vitasoy
 Redirect /~yhc http://home.ipoline.com/~yhc
 
 #6/13
 Redirect /~darin http://home.ipoline.com/~darin
 Redirect /~felix http://home.ipoline.com/~felix
 Redirect /~sunyoun http://home.ipoline.com/~sunyoun
 Redirect /~kkng http://home.ipoline.com/~kkng
 Redirect /~saifoo http://home.ipoline.com/~saifoo
 Redirect /~asv http://home.ipoline.com/~asv
 Redirect /~killer http://home.ipoline.com/~killer
 
 #6/16
 Redirect /~sushi http://home.ipoline.com/~sushi
 Redirect /~jcwong http://home.ipoline.com/~jcwong
 Redirect /~pangal http://home.ipoline.com/~pangal
 Redirect /~tsangr http://home.ipoline.com/~tsangr
 Redirect /~julian http://home.ipoline.com/~julian
 Redirect /~madmen http://home.ipoline.com/~madmen
 Redirect /~lml http://home.ipoline.com/~lml
 Redirect /~monster http://home.ipoline.com/~monster
 Redirect /~kimlau http://home.ipoline.com/~kimlau
 Redirect /~alalal http://home.ipoline.com/~alalal
 Redirect /~5zigen http://home.ipoline.com/~5zigen
 Redirect /~ahau http://home.ipoline.com/~ahau
 Redirect /~arazack http://home.ipoline.com/~arazack
 Redirect /~maka http://home.ipoline.com/~maka
 Redirect /~awu http://home.ipoline.com/~awu
 Redirect /~annfai8 http://home.ipoline.com/~annfai8
 Redirect /~iceman http://home.ipoline.com/~iceman
 Redirect /~awong http://home.ipoline.com/~awong
 Redirect /~bentang http://home.ipoline.com/~bentang
 Redirect /~bakilan http://home.ipoline.com/~bakilan
 Redirect /~ball http://home.ipoline.com/~ball
 Redirect /~olivern http://home.ipoline.com/~olivern
 Redirect /~bennett http://home.ipoline.com/~bennett
 Redirect /~brho http://home.ipoline.com/~brho
 Redirect /~samuelc http://home.ipoline.com/~samuelc
 Redirect /~bet0668 http://home.ipoline.com/~bet0668
 Redirect /~brianho http://home.ipoline.com/~brianho
 Redirect /~cookies http://home.ipoline.com/~cookies
 
 # 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.
 
 # Alias /icons/ /usr/local/apache/test/icons/
 Alias /icons /www/htdocs/icons
 
 Alias /index.html /index.shtml
 
 Alias /rthk /rthk/rthkwww
 Alias /bcmcc /home2/b/bcmcc/public_html
 Alias /diaoyu /home2/d/diaoyu/public_html
 Alias /bga /home/b/bga/public_html
 Alias /monsheong /home2/m/msff01/public_html
 Alias /funrun /home2/f/funrun/public_html
 Alias /toalpha /home2/t/toalpha/public_html
 Alias /userpage /creative
 
 # ScriptAlias: This controls which directories contain server scripts.
 # Format: ScriptAlias fakename realname
 
 ScriptAlias /cgi-bin/ /www/cgi-bin/
 
 # If you want to use server side includes, or CGI outside
 # ScriptAliased directories, uncomment the following lines.
 
 # AddType allows you to tweak mime.types without actually editing it, or to
 # make certain files to be certain types.
 # Format: AddType type/subtype ext1
 
 AddType application/octet-stream .exe
 AddType application/octet-stream .dll
 
 AddType application/x-cu-seeme .cu .csm
 
 # 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 command (see below)
 # Format: AddHandler action-name ext1
 
 # To use CGI scripts:
 AddHandler cgi-script .cgi
 
 # To use server-parsed HTML files
 AddType text/html .shtml
 AddHandler server-parsed .shtml
 
 # Uncomment the following line to enable Apache's send-asis HTTP file
 # feature
 #AddHandler send-as-is asis
 
 # If you wish to use server-parsed imagemap files, use
 AddHandler imap-file map
 
 # To enable type maps, you might want to use
 AddHandler type-map var
 
 # 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
 
 # MetaDir: specifies the name of the directory in which Apache can find
 # meta information files. These files contain additional HTTP headers
 # to include when sending the document
 
 #MetaDir .web
 
 # MetaSuffix: specifies the file name suffix for the file containing the
 # meta information.
 
 #MetaSuffix .meta
 
 # Customizable error response (Apache style)
 #  these come in three flavors
 #
 #    1) plain text
 #ErrorDocument 500 "The server made a boo boo.
 #  n.b.  the (") marks it as text, it does not get output
 #
 #    2) local redirects
 #ErrorDocument 404 /missing.html
 #  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://some.other_server.com/subscription_info.html
 #
 
 ErrorDocument 403 /error/403.html
 Date: Wed, 02 Jul 1997 17:39:32 -0400
 From: [EMAIL PROTECTED] (IPO Web Server)
 
 # access.conf: Global access configuration
 # Online docs at http://www.apache.org/
 
 # This file defines server settings which affect which types of services
 # are allowed, and in what circumstances. 
 
 # 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). 
 
 # Originally by Rob McCool
 
 # This should be changed to whatever you set DocumentRoot to.
 
 <Directory /www/htdocs>
 
 # This may also be "None", "All", or any combination of "Indexes",
 # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
 
 # Note that "MultiViews" must be named *explicitly* --- "Options All"
 # doesn't give it to you (or at least, not yet).
 
 # Options Indexes FollowSymLinks
 Options Includes FollowSymLinks ExecCGI
 
 # This controls which options the .htaccess files in directories can
 # override. Can also be "All", or any combination of "Options", "FileInfo", 
 # "AuthConfig", and "Limit"
 
 AllowOverride None
 
 # Controls who can get stuff from this server.
 
 order allow,deny
 allow from all
 
 </Directory>
 
 # /usr/local/etc/httpd/cgi-bin should be changed to whatever your ScriptAliased
 # CGI directory exists, if you have that configured.
 
 <Directory /www/cgi-bin>
 AllowOverride None
 Options Includes FollowSymLinks ExecCGI 
 </Directory>
 
 # Allow server status reports, with the URL of http://servername/server-status
 # Change the ".your_domain.com" to match your domain to enable.
 
 <Location /server-status>
 SetHandler server-status
 
 order deny,allow
 deny from all
 allow from .ipoline.com
 </Location>
 
 # There have been reports of people trying to abuse an old bug from pre-1.1
 # days.  This bug involved a CGI script distributed as a part of Apache.
 # By uncommenting these lines you can redirect these attacks to a logging 
 # script on phf.apache.org.  Or, you can record them yourself, using the script
 # support/phf_abuse_log.cgi.
 
 #<Location /cgi-bin/phf*>
 #deny from all
 #ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
 #</Location>
 
 # You may place any other directories or locations you wish to have
 # access information for after this one.
 
 <Directory /www/cgi-bin/account>
 AuthUserFile /usr/local/httpd/conf/.htpasswd
 AuthGroupFile /dev/null
 AuthName Accounting
 AuthType Basic
 <LIMIT POST>
   require valid-user
 </LIMIT>
 <LIMIT GET>
   require valid-user
 </LIMIT>
 </Directory>
 
 <Directory /www/htdocs/ipo/iponews/ipoandu/pass>
 AuthUserFile /usr/local/httpd/conf/.htpasswd
 AuthGroupFile /dev/null
 AuthName Accounting
 AuthType Basic
 <LIMIT POST>
   require valid-user
 </LIMIT>
 <LIMIT GET>
   require valid-user
 </LIMIT>
 </Directory>
 
 <Directory /www/htdocs/binaries>
 <Limit GET>
   order deny,allow
   deny from all
   allow from ipoline.com
 </Limit>
 </Directory>
 
 <Directory /www/htdocs/subscriber>
 <LIMIT GET>
   order deny,allow
   deny from all
   allow from ipoline.com
 </LIMIT>
 </Directory>
 
 <Directory /www/htdocs/news>
 <LIMIT GET>
   order deny,allow
   deny from all
   allow from ipoline.com
 </LIMIT>
 </Directory>
 
 <Directory /www/htdocs/ipo/iponews/faq>
 <Limit GET>
   order deny,allow
   deny from all
   allow from ipoline.com
 </Limit>
 </Directory>
 
 <Directory /www/htdocs/ipo/iponews/ipoandu>
 <Limit GET>
   order deny,allow
   deny from all
   allow from ipoline.com
 </Limit>
 </Directory>
 
 Date: Wed, 02 Jul 1997 17:37:23 -0700
 From: Bosco Tsang <[EMAIL PROTECTED]>
 Subject: Re: config/821: Virtual Hosts index.html not found
 
 Hi Ken,
 
 I have just sent the three configratuation files (httpd.conf, access.conf
 and srm.conf) for your inspection. Just a note ...in the httpd.conf
 section, we have just use the first virtual host (amcallpaging) for the
 test. The remaining virtual hosts may not have the correct config yet. If
 you are doing testing, please use the first one. 
 
 Thanks and regards,
 Bosco.

Reply via email to