-
Notifications
You must be signed in to change notification settings - Fork 454
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
证书能否支持增加 OCSP Must-Staple 标识? #292
Labels
enhancement
New feature or request
Comments
0xJacky
added a commit
that referenced
this issue
Feb 18, 2024
已在 1c4fb7a 中添加 |
默认就自动加上了吗?不需要在UI页面上显式勾选吗? |
0xJacky
added a commit
that referenced
this issue
Mar 14, 2024
0xJacky
added a commit
that referenced
this issue
Mar 14, 2024
0xJacky
added a commit
that referenced
this issue
Mar 14, 2024
0xJacky
added a commit
that referenced
this issue
Mar 14, 2024
0xJacky
added a commit
that referenced
this issue
Mar 14, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
证书签发的机构。The text was updated successfully, but these errors were encountered: