01-23-04 09:28 PM
Hello,
i have problem with certificate-based users auth.
There is a definition of one virtualhost (https). When I open this url
https://xxx, browser requests my certificate, but after that, i see
DNS error - page is not displayed. What's wrong? This conf is based on
www.openssl.org HowTo
<VirtualHost XXX.XXX.XX.XX:443>
mod_gzip_on No
DocumentRoot XXX
SSLEngine on
SSLCipherSuite ALL:!ADH:!
EXP56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:
+EXP:+eNULL
SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt
SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key
SSLCACertificateFile /etc/httpd/conf/ssl.crt/CA.crt
SSLCACertificatePath /etc/httpd/conf/ssl.crt
<Directory "XXX">
SSLRequireSSL
SSLVerifyClient optional
SSLVerifyDepth 3
</Directory>
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
CustomLog logs/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
ServerName XXX.pl
ServerAlias XXX.pl
</VirtualHost>
thanx
best regards
[ Post a follow-up to this message ]
|