1.
What does the “SSLCipherSuite” directive do?
2.
What does the “Include” directive do in an Apache configuration file?
3.
What does the following error indicate and how do you fix it: “Invalid command 'SSLMutex', perhaps mis-spelled or defined by a module not included in the server configuration”?
4.
What does the following error indicate and how do you fix it: “RSA server certificate CommonName (CN) `localhost' does NOT match server name”?
5.
EWhat does the following error indicate and how do you fix it: “SSL Library Error: 185073780 error:0B080074:x509 certificate routines:X509_check_private_key:key values mismatch”?
6.
What does the following error indicate and how do you fix it: “SSLCertificateFile: file 'C:/Program Files/Apache Software Foundation/Apache2.2/certs/localHOST.crt' does not exist or is empty”?
7.
By default, where are the HTML files located for the default site on a Windows Apache server?
Correct Answer
D. C:\Program Files\Apache Software Foundation\Apache2.2\htdocs
Explanation
The correct answer is C:\Program Files\Apache Software Foundation\Apache2.2\htdocs. This is the default location for HTML files for the default site on a Windows Apache server.
8.
What name do you enter in your browser to access the Apache web server when you are on the server?
Correct Answer
localhost
http://localhost/
https://localhost/
http://localhost
https://localhost
Explanation
You could also enter 127.0.0.1 because that is what localhost resolves to.
9.
What program do you use to generate a private key for Apache?
Correct Answer
openssl
open ssl
Explanation
The program used to generate a private key for Apache is openssl or open ssl. These programs provide a set of cryptographic functions that allow the generation, management, and manipulation of cryptographic keys and certificates. By using openssl or open ssl, users can generate a private key that is required for secure communication between Apache web servers and clients.
10.
Where is the default location for the main Apache configuration file (httpd.conf) on Windows?
Correct Answer
A. C:\Program Files\Apache Software Foundation\Apache2.2\conf
Explanation
The correct answer is C:\Program Files\Apache Software Foundation\Apache2.2\conf. This is the default location for the main Apache configuration file (httpd.conf) on Windows.
11.
What is the default extension for Apache configuration files?
Correct Answer
B. .conf
Explanation
The default extension for Apache configuration files is .conf. This extension is commonly used to identify configuration files in Apache servers.
12.
What is the name of the Apache module that enables SSL?
Correct Answer
mod_ssl
modssl
mod ssl
Explanation
The correct answer is "mod_ssl". This Apache module enables SSL, which stands for Secure Sockets Layer, a protocol that provides secure communication over the internet. The other options, "modssl" and "mod ssl", are not the correct names for this module.
13.
Which of the following is not a valid protocol for PCI compliance?
Correct Answer
D. All of the above
Explanation
For more info, read our whitepaper at http://www.digicert.com/news/DigiCert_PCI_White_Paper.pdf
14.
What is the default port that an https connection uses?
Correct Answer
443
Explanation
443 is the default port that an https connection uses. When a user tries to access a website using the secure HTTPS protocol, the browser automatically connects to the server on port 443. This port is specifically designated for secure communication over the internet using the SSL/TLS encryption protocols. By default, the server listens for incoming HTTPS connections on port 443, allowing for encrypted data transmission between the client and the server.
15.
What is the recommended directive to load the Intermediate certificate(s)?
Correct Answer
C. SSLCertificateChainFile
Explanation
SSLCACertificateFile can also be used but we now recommend using SSLCertificateChainFile in our installation instructions
16.
If a certificate is issued off of the DigiCert High Assurance CA-3
certificate, how many Intermediate certificate files (.crts) will need
to be specified in the Apache configuration file?
Correct Answer
A. One
Explanation
This was a trick question. There are 2 Intermediate certificates that are given out by Apache but only one .crt file. Both of the Intermediates (DigiCert High Assurance CA-3 and DigiCert High Assurance EV Root) are included in the DigiCertCA.crt file when Apache is selected as the server platform.
17.
Where are the Apache log files located by default?
Correct Answer
D. C:\Program Files\Apache Software Foundation\Apache2.2\logs
Explanation
The correct answer is C:\Program Files\Apache Software Foundation\Apache2.2\logs. This is the default location where Apache log files are stored.