Skip to content

Commit

Permalink
server: disable client certificate verification on OPTIONS request
Browse files Browse the repository at this point in the history
  • Loading branch information
MytsV authored and maany committed Nov 7, 2024
1 parent f354b67 commit 7d606e3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions server/rucio.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,12 @@ CacheRoot /tmp
SSLVerifyClient optional_no_ca
SSLVerifyDepth 10
{% if require_x509_auth %}
<Location /auth/x509/webui>
SSLVerifyClient require
SSLVerifyDepth 10
<Location /auth/x509/webui>
SSLVerifyClient optional
<LimitExcept OPTIONS>
SSLVerifyClient require
</LimitExcept>
SSLVerifyDepth 10
</Location>
{% endif %}
{% if RUCIO_HTTPD_LEGACY_DN|default('False') == 'True' %}
Expand Down

0 comments on commit 7d606e3

Please sign in to comment.