23 lines
571 B
Plaintext
23 lines
571 B
Plaintext
<VirtualHost *:443>
|
|
|
|
ServerAdmin webmaster@localhost
|
|
ServerName maquette.igensia
|
|
|
|
DocumentRoot /var/www/html
|
|
SSLEngine on
|
|
SSLCertificateFile /root/server/certs/server_san.cert
|
|
SSLCertificateKeyFile /root/server/private/server_san.key
|
|
SSLCertificateChainFile /root/ca-intermediaire/certs/chain.cert
|
|
|
|
<FilesMatch "\.(cgi|shtml|phtml|php)$">
|
|
SSLOptions +StdEnvVars
|
|
</FilesMatch>
|
|
|
|
<Directory /usr/lib/cgi-bin>
|
|
SSLOptions +StdEnvVars
|
|
</Directory>
|
|
|
|
BrowserMatch "MSIE [2-6]" \
|
|
BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
|
|
|
|
</VirtualHost> |