Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: SSL Problem |
|
Author |
|
hugomsgomes
Joined: 24 Sep 2007 Posts: 2 Location: Portugal
|
Posted: Fri 28 Sep '07 12:54 Post subject: SSL Problem |
|
|
Hi
I don't know if my problem is with server configuration or my php script!
I've configured a server to only give access to people with a valid certificate.
And it's working when users only have one certificate of the CA installed in Browser, but if the user has more than one certificate, the server don't stop asking for ther certificate and it's impossible navigate by the site!!!
In the apache in the ssl.conf i have this:
<?
<VirtualHost>
SSLVerifyClient require
SSLVerifyDepth 1
</VirtualHost>
?>
and in my index.php
i have lots of includes (don't know if this is important), and it may cause that by each include the server ask for a certificate!!!
ex.: index.php
<?php
include 'header.php';
include 'menu.php';
include 'content.php';
?>
So can anyone tell me why the server is asking to choose the certificate more than once, for the users who have more than one certificate?
With the best regards
Hugo Gomes |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7373 Location: Germany, Next to Hamburg
|
Posted: Tue 02 Oct '07 9:37 Post subject: |
|
|
That has nothing to do with your php script.
Did you try different browsers? |
|
Back to top |
|
|
|
|
|
|