图解Web服务器网关接口WSGI(Web Server Gateway Interface)

您所在的位置:网站首页 linux代理服务器和web服务器网关需要一样吗安全吗知乎 图解Web服务器网关接口WSGI(Web Server Gateway Interface)

图解Web服务器网关接口WSGI(Web Server Gateway Interface)

2024-07-15 21:20| 来源: 网络整理| 查看: 265

1) web server

先看看webserver是什么?

A web server is computer software and underlying hardware that accepts requests via HTTP, the network protocol created to distribute web pages

看见没 ,诸如apache, NGINX之类的web服务器,主要是在tcp之上,通过支持http协议来处理用户对静态网页的访问.

如果用户需要服务器端有处理复杂逻辑的功能,那么我们一般会实现一个application,来负责复杂逻辑部分的处理,如下图.

2)WSGI 

那么问题来了web服务器(如NGINX)怎么和我们实现的application进行交互呢?

此时就需要一个中间人WSGI(Web Server Gateway Interface)负责web server 和 Python application 之间的通信.

Now, web server is able to send requests or communicate with WSGI containers. Likewise, Python application provides a  callable object  which contains certain functionalities that are invoked by WSGI application which are defined as per the PEP 3333 standard.

There are multiple WSGI containers that are available today. Hence, a WSGI container is required to be installed in the project so that a web server can communicate to a WSGI container which further communicates to the Python application and provides the response back accordingly.

Finally, when the web server obtains the response, it is sent back to the web browser/users.



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3