curl -I 172.16.16.151:8000 HTTP/1.1 404 Not Found Date: Wed, 31 May 2023 06:39:49 GMT Server: WSGIServer/0.2 CPython/3.6.12 Content-Type: text/html X-Frame-Options: DENY Content-Length: 2284 X-Content-Type-Options: nosniff Referrer-Policy: same-origin 这个是啥web服务器
时间: 2024-04-29 20:20:13 浏览: 135
从响应头中可以看到,该服务返回的 Server 字段值为 "WSGIServer/0.2 CPython/3.6.12",这意味着该服务是使用 Python WSGI(Web Server Gateway Interface)协议来提供 Web 服务的。具体来说,它使用 WSGIServer 和 CPython 3.6.12 来实现。这种方式比较常见,可以使用 Python 的 Flask、Django 等框架来实现 Web 应用程序。因此,该服务使用的是 Python WSGI 服务器。
阅读全文