Recall & Review
beginner
What is the purpose of the
ssl_certificate directive in nginx?The
ssl_certificate directive specifies the path to the SSL certificate file used to encrypt data between the server and clients.Click to reveal answer
beginner
Which directive in nginx is used to specify the private key for SSL?
The
ssl_certificate_key directive points to the private key file that matches the SSL certificate for secure communication.Click to reveal answer
intermediate
What does the
ssl_protocols directive control in nginx?It controls which SSL/TLS protocol versions nginx will accept, such as TLSv1.2 and TLSv1.3, helping improve security by disabling older protocols.
Click to reveal answer
intermediate
Why is the
ssl_ciphers directive important in nginx SSL configuration?It defines the list of encryption algorithms (ciphers) nginx will use for SSL connections, allowing control over security strength and compatibility.
Click to reveal answer
intermediate
What is the effect of enabling
ssl_session_cache in nginx?Enabling
ssl_session_cache allows nginx to store SSL session parameters, speeding up repeated connections by reusing previous SSL handshakes.Click to reveal answer
Which directive specifies the SSL certificate file in nginx?
✗ Incorrect
The
ssl_certificate directive points to the SSL certificate file used by nginx.To enable only TLSv1.2 and TLSv1.3 protocols in nginx, which directive should you configure?
✗ Incorrect
The
ssl_protocols directive controls which TLS versions nginx accepts.What does the
ssl_certificate_key directive specify?✗ Incorrect
The
ssl_certificate_key directive points to the private key file for SSL.Why configure
ssl_ciphers in nginx?✗ Incorrect
The
ssl_ciphers directive defines which encryption algorithms nginx uses.What benefit does
ssl_session_cache provide?✗ Incorrect
Caching SSL sessions speeds up repeated connections by avoiding full handshakes.
Explain the key SSL directives needed to configure HTTPS in nginx and their roles.
Think about certificate files, encryption protocols, and performance.
You got /5 concepts.
Describe how you would improve SSL security in nginx using directive settings.
Focus on protocols, ciphers, and caching.
You got /4 concepts.