Which Apache HTTPD directive enables HTTPS protocol support?
Which Apache HTTPD directive enables HTTPS protocol support?
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.
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