Skip to content

Commit

Permalink
Merge pull request #858 from mandeepdhiman123/1.2.0-rc2
Browse files Browse the repository at this point in the history
added ssl conf for nginx
  • Loading branch information
mandeepdhiman123 authored Jan 21, 2022
2 parents 851c950 + cb0cd62 commit f4aae4e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions deployment/sandbox-v2/roles/nginx/tasks/update_conf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,17 @@
dest: '/usr/share/nginx/html/index.html'
become: yes

- name: nginx ssl conf template to yml
template:
src: ssl_conf.yml.j2
dest: '{{tmp_dir}}/ssl.conf'

- name: Copy new conf file
copy:
src: '{{tmp_dir}}/ssl.conf'
dest: '/etc/nginx/conf.d/ssl.conf'
become: yes

- name: Set symlink to mosip versions file
file:
src: '{{install_root}}/versions.yml'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ssl_ciphers "ECDHE-ECDSA-CHACHA20-POLY1305 ECDHE-RSA-CHACHA20-POLY1305 DHE-RSA-CHACHA20-POLY1305 EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA HIGH !RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS";

0 comments on commit f4aae4e

Please sign in to comment.