202-450 Exam QuestionsBrowse all questions from this exam

202-450 Exam - Question 32


Which Apache HTTPD directive enables HTTPS protocol support?

Show Answer
Correct Answer: B

The Apache HTTPD directive that enables HTTPS protocol support is 'SSLEngine on'. This directive activates the SSL/TLS support within the web server, allowing it to handle HTTPS requests. The other options do not correspond to any legitimate Apache HTTPD directives for enabling HTTPS.

Discussion

1 comment
Sign in to comment
ArminaOption: B
Feb 13, 2022

B is correct! Basic Configuration Example Your SSL configuration will need to contain, at minimum, the following directives. LoadModule ssl_module modules/mod_ssl.so Listen 443 <VirtualHost *:443> ServerName www.example.com SSLEngine on SSLCertificateFile "/path/to/www.example.com.cert" SSLCertificateKeyFile "/path/to/www.example.com.key" </VirtualHost> Ref.: https://httpd.apache.org/docs/2.4/ssl/ssl_howto.html