Skip to content
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

rucio-ui: use http is ssl is disabled. #295

Merged
merged 1 commit into from Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion ui/rucio.conf.j2
Expand Up @@ -37,6 +37,7 @@ CacheRoot /tmp
ServerAdmin rucio-admin@cern.ch
{% endif %}

{% if RUCIO_ENABLE_SSL|default('False') == 'True' %}
SSLEngine on
SSLCertificateFile /etc/grid-security/hostcert.pem
SSLCertificateKeyFile /etc/grid-security/hostkey.pem
Expand All @@ -54,7 +55,6 @@ CacheRoot /tmp
SSLOptions +StdEnvVars
{% endif %}
SSLProxyEngine On

{% if RUCIO_SSL_PROTOCOL is defined %}
#AB: SSLv3 disable
SSLProtocol {{ RUCIO_SSL_PROTOCOL }}
Expand All @@ -63,6 +63,8 @@ CacheRoot /tmp
{% endif %}
#AB: for Security
SSLCipherSuite HIGH:!CAMELLIA:!ADH:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!3DES
{% endif %}

{% if RUCIO_LOG_LEVEL is defined %}
LogLevel {{ RUCIO_LOG_LEVEL }}
{% else %}
Expand Down