WWW を検索 NOGNOG.COM を検索

WWW.NOGNOG.COM

Last modified: Sat, 29 Dec 2007 15:17:01 +0900
Home   うにっくすさんの覚え書き   プリングルズ   MIDI   ユーザー車検   「小沢昭一の小沢昭一的こころ」のススメ   Blog  

Apache - FrontPage Server Extensions 2002

    FrontPage Server Extensions のメーカーサポートは、2006年6月いっぱいで終了しました。

  • はじめに

    • Apache版 FrontPage Server Extensions 2002のインストール構築について解説します。
      構築の流れは、
      1. FrontPageモジュール(mod_frontpage.c)を組み込んでApacheをインストール、
      2. FrontPage Server Extensions 2002インストール、
      3. ApacheへFrontPageパッチ適応して、再度Apacheをインストール、
      となります。
      Apacheモジュールは全てDSOで作成する事を前提としています。
  • 用意するもの


  • コンパイル&インストール

      % tar zxvf apache_1.3.27.tar.gz
      % cd apache_1.3.27
      % ./configure --enable-module=most --enable-module=auth_digest --enable-module=speling --add-module=mod_frontpage.c --enable-shared=max
      % make
      % su
      # make install

  • コンフィグレーション

      # vi /usr/local/apache/conf/httpd.conf

        --- /usr/local/apache/conf/httpd.conf.default   2003-05-01 20:15:57.590363000 +0900
        +++ /usr/local/apache/conf/httpd.conf   2003-05-01 20:15:22.247978000 +0900
        @@ -96,8 +96,8 @@
         # server ignore these files altogether by using "/dev/null" (for Unix) or
         # "nul" (for Win32) for the arguments to the directives.
         #
        -#ResourceConfig conf/srm.conf
        -#AccessConfig conf/access.conf
        +ResourceConfig /dev/null
        +AccessConfig /dev/null
         
         #
         # Timeout: The number of seconds before receives and sends time out.
        @@ -273,14 +273,14 @@
         # machine always knows itself by this address. If you use Apache strictly for 
         # local testing and development, you may use 127.0.0.1 as the server name.
         #
        -#ServerName www.example.com
        +ServerName www.example.com
         
         #
         # 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 "/usr/local/apache/htdocs"
        +DocumentRoot /usr/local/apache/htdocs
         
         #
         # Each directory to which Apache has access, can be configured with respect
        @@ -321,7 +321,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.
        @@ -978,3 +978,7 @@
         #    ErrorLog logs/dummy-host.example.com-error_log
         #    CustomLog logs/dummy-host.example.com-access_log common
         #
        +
        +ScriptAlias /_vti_bin/_vti_adm/ /usr/local/apache/htdocs/_vti_bin/_vti_adm/
        +ScriptAlias /_vti_bin/_vti_aut/ /usr/local/apache/htdocs/_vti_bin/_vti_aut/
        +ScriptAlias /_vti_bin/ /usr/local/apache/htdocs/_vti_bin/
        			

  • FrontPage Server Extensions 2002インストール

      # sh fp_install.sh

  • FrontPageパッチ当て Apacheインストール

      % tar zxvf apache_1.3.27.tar.gz
      % cd apache_1.3.27
      % patch -p1 < /usr/local/frontpage/version5.0/apache-fp/fp-patch-apache_1.3.19
      % ./configure --enable-module=most --enable-module=auth_digest --add-module=mod_frontpage.c --enable-shared=max
      % make
      % su
      # make install

  • 起動

      # /usr/local/apache/bin/apachectl start

うにっくすさんの覚え書きについて

Home >> うにっくすさんの覚え書き >> Apache - FrontPage Server Extensions 2002