Apache 1.2.6 for NEXTSTEP 3.3J

for m68k, Intel, HPPA, Sparc

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

Japanese version is here
I have only tested it on NEXTSTEP 3.3J/Intel. (J means Japanese Version)

Contents

Install

    Install by Installer.app (simply double click apache.pkg)

Modify conf files

    modify conf files. (httpd.conf access.conf srm.conf)

Manually starting the server

  1. double click "/usr/local/etc/httpd/bin/apache_start"
    or
    type next command in Terminal.app
    /usr/local/etc/httpd/bin/apache_start
    or
    /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.

Automatically starting the server

If you'd like the server to start automatically anytime the system start up:
  1. Add the following to /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. Restart your system.

More Information

Tips