NGINX Configuration for Multiple Certificates

Configure NGINX for multiple certificate types on one domain and for SNI-based multi-domain certificate selection

2025-01-06 · 3 分钟

nginx Multi-Certificates

Nginx 配置多证书:同域名多类型证书和多域名 SNI 证书选择

2025-01-06 · 6 分钟

Build the Latest Nginx with Automation

Automate building the latest Nginx with current PCRE2, zlib, and OpenSSL dependencies for a portable static binary

2024-12-22 · 1 分钟

自动构建最新版本的 Nginx

自动获取并静态编译最新 Nginx 及其 PCRE2、zlib、OpenSSL 依赖。

2024-12-22 · 2 分钟

Detailed Configuration Guide for the NGINX Directive ssl_password_file

Using ssl_password_file in NGINX for SSL/TLS Private Key Management

2024-12-03 · 7 分钟

NGINX 指令 ssl_password_file 配置详解

ssl_password_file 指定含密码的文件,用于解锁加密的 SSL/TLS 私钥;密码错误会导致 NGINX 启动或重载失败。

2024-12-03 · 4 分钟

NGINX 中HTTP请求大小相关配置及解决方案-1

NGINX中收到HTTP请求大小相关的错误,以下典型错误及相关解决方案。

2024-11-24 · 2 分钟

Troubleshooting HTTP 400/414/413 Errors in NGINX: A Complete Guide

NGINX HTTP 400/414/413 usually means oversized headers, an overlong URI, or a body past client_max_body_size — tune large_client_header_buffers, client_header_…

2024-11-24 · 3 分钟

http3 - nginx with quictls

nginx 从1.25开始支持QUIC和http3

2024-02-16 · 1 分钟

SNI

SNI是TLS协议扩展, 在握手的开始标识其尝试连接的主机名, 当多个HTTPS服务部署在同一IP地址上,客户端就可以通过这个标识指定它将使用哪一个服务, 同时服务端也无需使用相同的证书,它在概念上相当于HTTP/1.1基于名称的虚拟主机。SNI扩展最早在2003年的RFC 3546中出现。

2023-12-11 · 4 分钟