[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
環境:Debian6
ドメイン:www.example.com
ドキュメントルート:/var/www/www.example.com
ドキュメントルートのディレクトリを作成
# mkdir /var/www/www.example.com
「www.example.com」ファイルを新規作成する。
# vi /etc/apache2/sites-available/www.example.com
--------------------------------------------------------------------------------
<VirtualHost *:80>
ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/www.example.com
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/www.example.com>
#Options Indexes FollowSymLinks MultiViews
Options FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/www.example.com.error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/www.example.com.access.log combined
</VirtualHost>
--------------------------------------------------------------------------------
サイトを有効にする
# a2ensite www.example.com
設定をリロード
# /etc/init.d/apache2 reload