soft@appleple.com

【Apache】nameベースのバーチャルホスト

httpd.confにまずは、ネームベースで使うIPを明示する必要があります。

****httpd.confの中身******

NameVirtualHost 192.168.0.11
NameVirtualHost 192.168.0.9
NameVirtualHost 192.168.0.19
NameVirtualHost 192.168.0.19:443


<VirtualHost 192.168.0.8:80 192.168.0.19:80>
ServerName www.xxx.com.tw
DocumentRoot /home/xxxx_kw/html
ScriptAlias /cgi-bin/ /home/xxxx_kw/cgi-bin/
ServerAdmin request@xxxxx.ne.jp
ErrorLog /var/log/httpd/www.xxxx.com.tw/error.log
CustomLog /var/log/httpd/www.xxxx.com.tw/access.log combined
</VirtualHost>

***************************

Last Update : 2005年02月22日 (火) 19:23