欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

nginx系列1:认识nginx

程序员文章站 2022-04-14 17:03:46
nginx介绍nginx是什么呢?可以看下官方网站的定义:nginx [engine x] is an HTTP and reverse proxy server, a mail proxy server, and a generic TCP/UDP proxy server, originally... ......

nginx介绍

nginx是什么呢?可以看下官方网站的定义:

nginx [engine x] is an http and reverse proxy server, a mail proxy server, and a generic tcp/udp proxy server, originally written by igor sysoev.

总结起来,nginx是一个http(可以理解为web服务器)和反向代理服务器,也可以作为邮件和一般的tcp/udp代理服务器,是由俄罗斯人igor sysoev开发的。

四个主要组成部分

五个主要优点

nginx的应用场景

总结起来,有三大应用场景,其中第二个作为反向代理服务器最常用。

  1. web服务器(静态资源)。
  2. 反向代理服务器。
  3. api服务(通过openresty)。