Apache仮想ホスト構成

658 ワード

1.リスニングポートを追加するには:
Listen 80
Listen 8080
2.既存のServer Nameの下に仮想ホストポートを追加します:(このIPはlocalhostまたはイントラネットIPで使用できます)
ServerName 201.230.222.214:80  
NameVirtualHost 201.230.222.214:8080
3.仮想ホストディレクトリの追加
<VirtualHost 201.230.222.214:8080>
    ServerName 201.230.222.214:8080
    DocumentRoot "/www/domain-8080"
</VirtualHost>

4.仮想ホストディレクトリのプロパティ設定
<Directory "/www/domain-8080">
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>