Check

mod_rewriteとdnsmasqでバーチャルドメイン量産

| | コメント(0) | トラックバック(0)
apache2.confをこんな感じにする
NameVirtualHost *
<VirtualHost *>
        RewriteEngine on
        RewriteCond %{HTTP_HOST} ^(\w+)
        RewriteRule ^(.*) /mnt/win/%1/$1
</VirtualHost>

で、dnsmasq.confをこんな感じに。
address=/localdomain/192.168.11.150

後は、windowsのdnsをlinuxに向ければ、http://hoge.localdomain/は/mnt/win/hoge/を見るし、http://huga.localdomain/nnnは/mnt/win/huga/nnnを見る。

ドメイン追加したかったらディレクトリ掘るだけ。

トラックバック(0)

このブログ記事を参照しているブログ一覧: mod_rewriteとdnsmasqでバーチャルドメイン量産

このブログ記事に対するトラックバックURL: http://0-9.sakura.ne.jp/mt/mt-tb.cgi/541

コメントする