--- httpd.conf.default Sun Oct 18 00:11:45 1998 +++ httpd.conf Sun Oct 18 14:53:03 1998 @@ -33,14 +33,14 @@ # Port: The port the standalone listens to. For ports < 1023, you will # need httpd to be run as root initially. -Port 8080 +Port 80 # HostnameLookups: Log the names of clients or just their IP numbers # 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. -HostnameLookups 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. @@ -59,7 +59,7 @@ # ServerAdmin: Your address, where problems with the server should be # e-mailed. -ServerAdmin makoto@a.ki.nu +ServerAdmin makoto@ki.nu # ServerRoot: The directory the server's config, error, and log files # are kept in. @@ -74,12 +74,13 @@ # contain "*", an IP address, or a fully qualified Internet domain name. # See also the VirtualHost directive. -#BindAddress * +#indAddress 210.145.40.126 +BindAddress * # ErrorLog: The location of the error log file. If this does not start # with /, ServerRoot is prepended to it. -ErrorLog /var/apache/var/log/error_log +ErrorLog /var/apache/log/error_log # LogLevel: Control the number of messages logged to the error_log. # Possible values include: debug, info, notice, warn, error, crit, @@ -98,13 +99,13 @@ # The location of the access logfile (Common Logfile Format). # If this does not start with /, ServerRoot is prepended to it. -CustomLog /var/apache/var/log/access_log common +CustomLog /var/apache/log/access_log common # If you would like to have an agent and referer logfile uncomment the # following directives. -#CustomLog /var/apache/var/log/referer_log referer -#CustomLog /var/apache/var/log/agent_log agent +CustomLog /var/apache/log/referer_log referer +CustomLog /var/apache/log/agent_log agent # If you prefer a single logfile with access, agent and referer information # (Combined Logfile Format) you can use the following directive. @@ -112,13 +113,13 @@ #CustomLog /var/apache/var/log/access_log combined # PidFile: The file the server should log its pid to -PidFile /var/apache/var/run/httpd.pid +PidFile /var/apache/run/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 /var/apache/var/run/httpd.scoreboard +ScoreBoardFile /var/apache/run/httpd.scoreboard # The LockFile directive sets the path to the lockfile used when Apache # is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or @@ -128,7 +129,7 @@ # DISK. The PID of the main server process is automatically appended to # the filename. # -#LockFile /var/apache/var/run/httpd.lock +LockFile /var/apache/run/httpd.lock # ExtendedStatus controls whether Apache will generate "full" status # information (ExtendedStatus On) or just basic information (ExtendedStatus @@ -162,7 +163,7 @@ # Port to form a "canonical" name. With this setting off, Apache will # use the hostname:port that the client supplied, when possible. This # also affects SERVER_NAME and SERVER_PORT in CGIs. -UseCanonicalName on +UseCanonicalName off # CacheNegotiatedDocs: By default, Apache sends Pragma: no-cache with each # document that was negotiated on the basis of content. This asks proxy @@ -269,5 +270,21 @@ #ErrorLog logs/host.some_domain.com-error_log #TransferLog logs/host.some_domain.com-access_log # + +NameVirtualHost 210.145.40.126 + +#ServerAdmin webmaster@host.some_domain.com +DocumentRoot /home/fujiwara/public_html +ServerName a.ki.nu +ErrorLog log/a-error_log +TransferLog log/a-access_log + + +#ServerAdmin webmaster@host.some_domain.com +DocumentRoot /home/small-circle +ServerName small-circle2.ki.nu +ErrorLog log/small-circle-error_log +TransferLog log/small-circle-access_log + --- access.conf.default Sun Oct 18 00:11:49 1998 +++ access.conf Sun Oct 18 13:19:09 1998 @@ -18,8 +18,8 @@ # permissions. -Options FollowSymLinks -AllowOverride None +Options FollowSymLinks ExecCGI Includes +AllowOverride All # Note that from this point forward you must specifically allow @@ -43,7 +43,7 @@ # override. Can also be "All", or any combination of "Options", "FileInfo", # "AuthConfig", and "Limit" -AllowOverride None +AllowOverride All # Controls who can get stuff from this server. --- srm.conf.default Sun Oct 18 00:11:52 1998 +++ srm.conf Sun Oct 18 14:27:27 1998 @@ -16,7 +16,7 @@ # 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/apache/share/htdocs" +DocumentRoot "/home/fujiwara/public_html" # UserDir: The name of the directory which is appended onto a user's home # directory if a ~user request is recieved. @@ -26,7 +26,7 @@ # DirectoryIndex: Name of the file or files to use as a pre-written HTML # directory index. Separate multiple entries with spaces. -DirectoryIndex index.html +DirectoryIndex index.shtml index.html # FancyIndexing is whether you want fancy directory indexing or standard @@ -161,7 +161,7 @@ # ScriptAlias: This controls which directories contain server scripts. # Format: ScriptAlias fakename realname -#ScriptAlias /cgi-bin/ "/var/apache/share/cgi-bin/" +ScriptAlias /cgi-bin/ "/var/apache/share/cgi-bin/" # If you want to use server side includes, or CGI outside # ScriptAliased directories, uncomment the following lines. @@ -181,11 +181,11 @@ # Format: AddHandler action-name ext1 # To use CGI scripts: -#AddHandler cgi-script .cgi +AddHandler cgi-script .cgi # To use server-parsed HTML files -#AddType text/html .shtml -#AddHandler server-parsed .shtml +AddType text/html .shtml +AddHandler server-parsed .shtml # Uncomment the following line to enable Apache's send-asis HTTP file # feature