Настроил Apache 1.3... создал вирутальный сервер и включил поддержку ssl.
URL https://www.servername.ru/index.htm работает, а URL
https://www.servername.ru/guzilla/index.cgi не открывается, говорит, что "The requested URL /bugzilla/index.cgi was not found on this server."Настройки из апача
<Directory "/var/www/servername.ru/bugzilla">
AddHandler cgi-script .cgi
Options +Indexes +ExecCGI
DirectoryIndex index.cgi
AllowOverride Limit
</Directory><VirtualHost ip-address>
ServerAdmin webmaster@servername.ru
ServerAdmin webmaster@servername.ru
DocumentRoot /var/www/servername.ru
ServerName www.servername.ru
ErrorLog /var/log/httpd/servername.ru-error_log
CustomLog /var/log/httpd/servername.ruaccess_log commonSSLEngine on
SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt
SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key
SSLCACertificatePath /etc/httpd/conf/ssl.crt
SSLCARevocationPath /etc/httpd/conf/ssl.crl
SSLVerifyClient none
SSLVerifyDepth 10SSLOptions +ExportCertData +StrictRequire
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
SetEnvIf Request_URI \.gif$ gif-image
CustomLog /var/log/httpd/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" env=!gif-image
</VirtualHost>
Поле того как я добаил поддержку ssl для первого вртуалного сервера у меня перестал работать второй вирутальный сервер, говорит, чтоBad Request
Your browser sent a request that this server could not understand.
Reason: You're speaking plain HTTP to an SSL-enabled server port.
Instead use the HTTPS scheme to access this URL, please.Вот настройка второго вирутального сервера, там ssl поддержки нет
<VirtualHost ip-address>
ServerAdmin webmaster@servername1.ru
ServerAdmin webmaster@servername1.ru
DocumentRoot /var/www/servername1.ru
ServerName www.servername1.ru
ErrorLog /var/log/httpd/servername1.ru-error_log
CustomLog /var/log/httpd/servername1.ruaccess_log common
</VirtualHost>Где я ошибся?
Теперь у тебя апач должен слушать 2 порта: 80 и 443 И в настройках виртуалхостов надо указывать конкретные порты. И еще. На 1 ip можно поднять только 1 ssl-хост. Т.е. в твоем варианте на 80 порт ты можешь навешать кучу виртуалхостов, а на 443-й только один.Listen ip-address:80
NameVirtualHost ip-address:80<IfDefine SSL>
Listen ip-address:443
NameVirtualHost ip-address:443
</IfDefine><VirtualHost ip-address:443>
...
</VirtualHost><VirtualHost ip-address:80>
...
</VirtualHost>