Merge pull request #237 from jzelinskie/disable-ocsp
nginx: "temporarily" disable OCSP stapling
This commit is contained in:
commit
de99d6f017
1 changed files with 4 additions and 2 deletions
|
@ -14,10 +14,12 @@ http {
|
|||
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
||||
ssl_session_cache shared:SSL:10m;
|
||||
ssl_session_timeout 5m;
|
||||
ssl_stapling on;
|
||||
ssl_stapling_verify on;
|
||||
ssl_prefer_server_ciphers on;
|
||||
|
||||
# TODO: learn wtf OCSP stapling is and do it the right way
|
||||
#ssl_stapling on;
|
||||
#ssl_stapling_verify off;
|
||||
|
||||
server {
|
||||
include server-base.conf;
|
||||
|
||||
|
|
Reference in a new issue