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

Disable TLS 1.0 & 1.1 and use ffdhe2048 DHE group #408

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ansible/group_vars/omero-hosts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ omero_server_config_set:
omero.client.icetransports: ssl,tcp,ws
# Disable all components except Blitz and Tables
omero.server.nodedescriptors: "master:Blitz-0,Tables-0"
# To be removed once omero-certificats is released with
# https://github.com/ome/omero-certificates/pull/36
omero.glacier2.IceSSL.DH.2048: "ffdhe2048.pem"
omero.glacier2.IceSSL.ProtocolVersionMax: "TLS1_2"
omero.glacier2.IceSSL.Protocols: "TLS1_2"

omero_server_selfsigned_certificates: True

Expand Down
20 changes: 20 additions & 0 deletions ansible/idr-omero.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,26 @@

- hosts: "{{ idr_environment | default('idr') }}-omeroreadwrite-hosts"

# To be removed once omero-certificats is released with
# https://github.com/ome/omero-certificates/pull/36
pre_tasks:
- name: Create certs directory
become: true
file:
path: /data/OMERO/certs
owner: omero-server
group: omero-server
state: directory

- name: Download ffdhe2048 group
become: true
get_url:
url: https://ssl-config.mozilla.org/ffdhe2048.txt
dest: "/data/OMERO/certs/ffdhe2048.pem"
owner: omero-server
group: omero-server
force: yes

roles:
- role: ome.omero_server

Expand Down
Loading