[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:43661] Virtualhost毎にSSL証明書を発行





いつもおせわになります。

Virtualhost毎にSSLの証明書を設定したいとおもってます
以下のように設定しているのですが

2つのバーチャルホストを使用しているので
それぞれ違う 証明書 pemとkey を使用したいのですが
どのように設定すればいいのでしょうか。

aaaaa.jp と bbb.aaaaa.jp  のそれぞれに違うpemとkeyを設定したいということです。
よろしくおねがいします。

Yuya Itoh   Debian 3.1 sarge

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
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>