Webサーバーの基本Apache。ここから最新ソースを入手して下さい。 今回インストールしているのはVer2.0.48 |
インストール |
$ tar zxvf httpd-2.0.48.tar.gz
$ cd httpd-2.0.48
$ ./configure --enable-so --enable-ssl --enable-dav
$ make
$ su
# make install |
|
/usr/local/apache2/conf/httpd.confの編集 |
Listen 80
AddDefaultCharset none
ServerAdmin root@www.nc30soft.com
ServerName www.nc30soft.com:80
DocumentRoot “/usr/local/apache2/htdocs” |
|
Apacheの起動 |
| # /usr/local/apache2/bin/apachectl start |
|