要查看 Nginx 的版本信息,可以通过以下几种方法:
nginx -v
命令nginx -v
nginx version: nginx/1.18.0 (Ubuntu)
nginx -V
命令(大写 V)nginx -V
bash
nginx version: nginx/1.18.0
built with OpenSSL 1.1.1 (compiler: gcc 8.4.0)
configure arguments: --with-http_ssl_module...
curl -I http://localhost
http
HTTP/1.1 200 OK
Server: nginx/1.18.0 (Ubuntu)
Server
头部获取版本,但可能被配置隐藏(见下方注意事项)。which nginx # 获取二进制路径
/usr/sbin/nginx -v # 指定路径执行
bash
apt list --installed | grep nginx
bash
rpm -qa | grep nginx
command not found
,尝试使用完整路径(如 /usr/sbin/nginx -v
)或以 root 权限运行。nginx
server_tokens off;
之后,curl -I
将仅显示 Server: nginx
。nginx.exe -v
。bash
docker exec <container_name> nginx -v
根据需求选择合适的方法即可。如需进一步分析编译选项或模块,推荐使用 nginx -V
。