Bonjour à tous.

Je viens vers vous car je souhaite créer un certificat SLL EV (avec la petite barre verte) en locale.

J'ai déjà tous configurer sous apache et j'utilise un certificat SLL simple sur mon "https://local.dev -> 127.0.01:443".


Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<VirtualHost 127.0.0.1:443>
 
	DocumentRoot "C:\wamp\www\PROJET\MaterialAdmin\web\public"
	ServerName local.dev:443
	ServerAdmin tech@corp.bahu.fr
	ErrorLog "c:/wamp/bin/apache/Apache2.4.9/logs/ssl_error.log"
	TransferLog "c:/wamp/bin/apache/Apache2.4.9/logs/ssl_access.log"
 
	SSLEngine on
	SSLCertificateFile "c:/wamp/bin/apache/Apache2.4.9/conf/cert/local_dev.crt"
	SSLCertificateKeyFile "c:/wamp/bin/apache/Apache2.4.9/conf/key/local_dev.key"
 
 
	<FilesMatch "\.(cgi|shtml|phtml|php)$">
    	SSLOptions +StdEnvVars
	</FilesMatch>
	<Directory "c:/wamp/www/">
   		SSLOptions +StdEnvVars
	</Directory>
 
	BrowserMatch "MSIE [2-5]" \
         nokeepalive ssl-unclean-shutdown \
         downgrade-1.0 force-response-1.0
 
	CustomLog "C:/wamp/bin/apache/Apache2.4.9/logs/ssl_request.log" \
          "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
 
</VirtualHost>

Avez vous des idées pour créer un certificat SSL EV auto signé pour utilisé en locale ?

Merci =)