Apache 1.2.6 for NEXTSTEP 3.3J

for m68k, Intel, HPPA, Sparc

by Tsutomu_Eguchi@ns.saga-med.ac.jp

English version
NEXTSTEP 3.3J/Intel でのみテストしてます

Contents

インストール

    Installer.appでインストールします (apache.pkgをダブルクリックする)

conf filesの変更

    conf filesを変更します. (httpd.conf access.conf srm.conf)

マニュアルでサーバをスタート

  1. "/usr/local/etc/httpd/bin/apache_start" をダブルクリック するか
    Terminal.appで次のコマンドをタイプする
    /usr/local/etc/httpd/bin/apache_start
    または
    /usr/local/etc/httpd/bin/httpd -f /usr/local/etc/httpd/conf/httpd.conf
  2. Verify the server is running by accessing the URL http://127.0.0.1/Test_Page_for_Apache.html.
  3. If your browser dispalys "It Worked!" pgae, then the server is running.

自動的にサーバをスタートさせる

If you'd like the server to start automatically anytime the system start up:
  1. 次の内容を/etc/rc.localに追加して下さい:
    #
    # Apache::START::
    #
    # add your rc.local
    #
    
    if [ -f /usr/local/etc/httpd/bin/httpd -a -f /usr/local/etc/httpd/conf/httpd.conf ]; then
    	(echo -n ' apache')					>/dev/console
    	/usr/local/etc/httpd/bin/httpd -f /usr/local/etc/httpd/conf/httpd.conf
    fi
    
    
    # Apache::END::
    
  2. システムを再起動する.

More Information

Tips