Question 1 of 5
Need a teammate, not a test?
Build something great with a NGINX expert.
Study guide
NGINX quiz questions and answers
Review all 5 questions at your own pace. Open each answer to see the correct response and a concise explanation of the concept.
1What is NGINX commonly used for?
Correct answer
Reverse proxy and web server
NGINX can serve static files, proxy requests, terminate TLS, cache, and load balance.
2What does a reverse proxy do?
Correct answer
Forwards client requests to backend servers
A reverse proxy sits in front of backend services and routes incoming traffic.
3Why enable gzip or Brotli compression?
Correct answer
Reduce transferred text asset size
Compression reduces bytes for HTML, CSS, JS, and other text responses.
4What does TLS termination mean?
Correct answer
Handling HTTPS encryption at NGINX
NGINX can handle HTTPS certificates and forward requests to upstream services.
5Which directive is commonly used to send traffic to an upstream app?
Correct answer
proxy_pass
proxy_pass forwards matching requests to an upstream server or upstream group.