24 lines
520 B
Plaintext
24 lines
520 B
Plaintext
<IfModule mod_ssl.c>
|
|
<VirtualHost _default_:443>
|
|
ServerAdmin tmaze@student.42.fr
|
|
|
|
DocumentRoot /var/www/nice_website
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
|
|
SSLEngine on
|
|
|
|
SSLCertificateFile /home/tanguy/.ssl/server.crt
|
|
SSLCertificateKeyFile /home/tanguy/.ssl/server.key
|
|
|
|
<FilesMatch "\.(cgi|shtml|phtml|php)$">
|
|
SSLOptions +StdEnvVars
|
|
</FilesMatch>
|
|
<Directory /usr/lib/cgi-bin>
|
|
SSLOptions +StdEnvVars
|
|
</Directory>
|
|
|
|
</VirtualHost>
|
|
</IfModule>
|