[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[debian-users:43669] Re: Virtualhost毎にSSL証明書を発行
同じIPアドレスでもポートを別にすればいけるということですよね。
ports.conf で Listen 444 と追加して
sites-availableに新規 ssl2 を作成して
下記のようにしてみたんですが、ダメみたいです。
やっぱりできないということなんでしょうか。
お手数ですがよろしくおねがいします。
------------------------------------------------
NameVirtualHost 192.168.0.10:444
<VirtualHost 192.168.0.10:444>
ServerAdmin aaa@xxxxxxx
ServerName aaa.aaa.com:444
DocumentRoot /home/aaa/public_html/
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
<Directory />
Options FollowSymLinks ExecCGI Includes
AllowOverride All
</Directory>
<Directory /home/aaa/public_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>
--------------------------------------------
Itoh Yuya debian 3.1
----- Original Message -----
From: <yuuya@xxxxxxxxxxxxx>
To: <debian-users@debian.or.jp>
Sent: Tuesday, May 31, 2005 8:23 PM
Subject: [debian-users:43666] Re: Virtualhost毎にSSL証明書を発行
ご丁寧にありがとうございました。
別のポートを使ってもう一度やってみたいとおもいます。
ありがとうございます。
> Virtualhost毎にSSLの証明書を設定したいとおもってます
>
> 2つのバーチャルホストを使用しているので
> それぞれ違う 証明書 pemとkey を使用したいのですが
Itoh Yuya