mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-04-25 08:45:58 +03:00
[GH-ISSUE #292] 证书能否支持增加 OCSP Must-Staple 标识? #5929
Labels
No labels
Q/A
bug
casdoor
dependencies
docker
documentation
duplicate
enhancement
help wanted
invalid
lego
platform:openwrt
platform:windows
pull-request
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/nginx-ui#5929
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jearton on GitHub (Feb 18, 2024).
Original GitHub issue: https://github.com/0xJacky/nginx-ui/issues/292
ocsp must staple 是在签发证书时,往证书里追加的相关标识,用于明确告诉浏览器,ocsp 请求必须由服务端装订,即由服务端去查询好证书状态,再返回给浏览器。
目前能够签署出该扩展的证书的
CA只有Let's Encrypt。如果要设置
OCSP Must-Staple,需要在使用openssl生成csr的时候,修改openssl.cnf中的内容:在
v3_req中添加1.3.6.1.5.5.7.1.24 = DER:30:03:02:01:05。如果是使用
openssl 1.1.0或更高的版本,可以这样设置:添加
tlsfeature = status_request即可。然后生成该
csr文件,使用该csr文件,把改csr提交给支持Let's Encrypt证书签发的机构。@0xJacky commented on GitHub (Feb 18, 2024):
已在
1c4fb7a中添加@jearton commented on GitHub (Feb 18, 2024):
默认就自动加上了吗?不需要在UI页面上显式勾选吗?