Skip to content

Commit

Permalink
Enabled Certificate Revocation Lists checking
Browse files Browse the repository at this point in the history
- CRLs were not checked so far, this change adds directives to check them.
- The service *fetch-crl-cron* must be installed and started for this to work.
  • Loading branch information
zlamalp committed Aug 28, 2024
1 parent 32c225d commit f1c025e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions templates/sites-enabled/perun-api-cert.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@
SSLVerifyDepth 5
SSLVerifyClient optional
SSLOptions +LegacyDNStringFormat
SSLCARevocationCheck chain
SSLCARevocationPath /etc/grid-security/certificates/

LogLevel warn ssl:warn rewrite:warn

Expand Down
2 changes: 2 additions & 0 deletions templates/sites-enabled/perun-cert.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@
SSLVerifyDepth 5
SSLVerifyClient optional
SSLOptions +LegacyDNStringFormat
SSLCARevocationCheck chain
SSLCARevocationPath /etc/grid-security/certificates/

LogLevel warn ssl:warn rewrite:warn

Expand Down
2 changes: 2 additions & 0 deletions templates/sites-enabled/perun.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ ShibCompatValidUser on
SSLVerifyDepth 5
SSLVerifyClient optional
SSLOptions +LegacyDNStringFormat
SSLCARevocationCheck chain
SSLCARevocationPath /etc/grid-security/certificates/
{% endif %}

# Increasing limits on HTTP headers. Connector packetSize in Tomcat must be set to bigger value than ProxyIOBufferSize here.
Expand Down

0 comments on commit f1c025e

Please sign in to comment.