What is Nginx? #4907
Answered
by
NadeeshaMedagama
malikaweerakoon1974
asked this question in
Q&A
Replies: 1 comment
|
Nginx (pronounced "Engine-X") is a high-performance web server that can also act as: Reverse Proxy It is widely used in production environments because it efficiently handles many concurrent connections. Example ↓ Nginx ↓ Node.js Application Users connect to Nginx instead of directly to the backend. Advantages |
0 replies
Answer selected by
malikaweerakoon1974
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nginx (pronounced "Engine-X") is a high-performance web server that can also act as:
Reverse Proxy
Load Balancer
HTTP Cache
API Gateway
It is widely used in production environments because it efficiently handles many concurrent connections.
Example
Client
↓
Nginx
↓
Node.js Application
Users connect to Nginx instead of directly to the backend.
Advantages
Fast
Lightweight
SSL termination
Static file serving
Reverse proxy support