^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
NameVirtualHost 192.168.0.10:443
<VirtualHost 192.168.0.10:443>
ServerName aaaaa.jp:443
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/server.pem
SSLCertificateKeyFile /etc/apache2/ssl/server.key
TransferLog /var/log/apache2/ssl_access_log
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
ServerAdmin server@xxxxxxxx
ServerName aaaaa.jp
DocumentRoot /var/www/html/
<Directory />
Options FollowSymLinks ExecCGI Includes
AllowOverride All
</Directory>
<Directory /var/www/html/>
Options FollowSymLinks MultiViews ExecCGI Includes
AllowOverride None
Order allow,deny
allow from all
</Directory>
<VirtualHost 192.168.0.10:443>
ServerAdmin server@xxxxxxxx
ServerName aaaaa.jp
DocumentRoot /var/www/html/
<Directory />
Options FollowSymLinks ExecCGI Includes
AllowOverride All
</Directory>
<Directory /var/www/html/>
Options FollowSymLinks MultiViews ExecCGI Includes
AllowOverride All
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
</Directory>
</VirtualHost>
<VirtualHost 192.168.0.10:443>
ServerAdmin server@xxxxxxxx
ServerName bbb.aaaaa.jp
DocumentRoot /home/aaa/
<Directory />
Options FollowSymLinks ExecCGI Includes
AllowOverride All
</Directory>
<Directory /home/aaa/>
Options FollowSymLinks MultiViews ExecCGI Includes
AllowOverride All
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
</Directory>
</VirtualHost>